Fix some of the Task json examples to have the correct description

This commit is contained in:
Maarten Rijke 2015-01-15 09:41:23 +01:00
parent 6f1537d153
commit 58b334c8e6
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ Merge tasks merge a list of segments together. Any common timestamps are merged.
"type": "merge",
"id": <task_id>,
"dataSource": <task_datasource>,
"segments": <JSON list of DataSegment objects to append>
"segments": <JSON list of DataSegment objects to merge>
}
```
@ -207,7 +207,7 @@ Delete tasks create empty segments with no data. The grammar is:
"type": "delete",
"id": <task_id>,
"dataSource": <task_datasource>,
"segments": <JSON list of DataSegment objects to append>
"segments": <JSON list of DataSegment objects to delete>
}
```