Docs: remove trailing comma from example requests/responses Change-Id: I30aa6b18b064984317dceb4c369bf03c9fed0d55
diff --git a/resources/Documentation/rest-api-checkers.md b/resources/Documentation/rest-api-checkers.md index 534a479..06aa276 100644 --- a/resources/Documentation/rest-api-checkers.md +++ b/resources/Documentation/rest-api-checkers.md
@@ -64,7 +64,7 @@ "uuid": "test:my-checker", "name": "MyChecker", "description": "A simple checker.", - "repository": "examples/Foo", + "repository": "examples/Foo" } ```
diff --git a/resources/Documentation/rest-api-pending-checks.md b/resources/Documentation/rest-api-pending-checks.md index 2974410..3a2ccd8 100644 --- a/resources/Documentation/rest-api-pending-checks.md +++ b/resources/Documentation/rest-api-pending-checks.md
@@ -62,11 +62,11 @@ "patch_set": { "repository": "test-repo", "change_number": 1, - "patch_set_id": 1, + "patch_set_id": 1 } "pending_checks": { "test:my-checker": { - "state": "NOT_STARTED", + "state": "NOT_STARTED" } } }, @@ -74,11 +74,11 @@ "patch_set": { "repository": "test-repo", "change_number": 5, - "patch_set_id": 2, + "patch_set_id": 2 } "pending_checks": { "test:my-checker": { - "state": "SCHEDULED", + "state": "SCHEDULED" } } }