Skip to content
This repository was archived by the owner on Jun 8, 2022. It is now read-only.

Commit cbfeb3d

Browse files
committed
Updated README.md
1 parent 564e2e1 commit cbfeb3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,13 @@ doc.add(JsonPatchOperation('replace', SystemFields.TITLE, 'Work item 2'))
197197
workitem = client.update_workitem(13, doc)
198198
```
199199
#### Change work item type
200-
NOTE: Only supported on Azure DevOps (not on TFS).
200+
> Only supported on Azure DevOps (not on TFS).
201201
```python
202202
client = VstsClient('dev.azure.com/<account>', '<personalaccesstoken>')
203203
client.change_workitem_type(13, 'Task')
204204
```
205205
#### Move a work item
206-
NOTE: Only supported on Azure DevOps (not on TFS).
206+
> Only supported on Azure DevOps (not on TFS).
207207
```python
208208
client = VstsClient('dev.azure.com/<account>', '<personalaccesstoken>')
209209

@@ -244,7 +244,7 @@ client.add_attachment(workitem.id, attachment.url, 'Linking example.png to a wor
244244
#### Update work items bypassing rules
245245
Bypassing the rules engine allows you to modify work item fields without any restrictions, for example you can assign a work item to a user no longer in the organization.
246246

247-
To modify the `System.CreatedBy`, `System.CreatedDate`, `System.ChangedBy`, or `System.ChangedDate` fields, you must be a member of the Project Collection Service Acccounts group.
247+
> To modify the `System.CreatedBy`, `System.CreatedDate`, `System.ChangedBy`, or `System.ChangedDate` fields, you must be a member of the Project Collection Service Acccounts group.
248248
```python
249249
doc = JsonPatchDocument()
250250
doc.add(JsonPatchOperation('add', SystemFields.CHANGED_BY, 'Woody <woody@contoso.com>'))

0 commit comments

Comments
 (0)