Commit 979dd2603c18502e3a0065d0aa0c94af5e495b8a
1 parent
9ffabc6d
Exists in
master
and in
4 other branches
Fix invalid json in issues API doc
Showing
1 changed file
with
5 additions
and
6 deletions
Show diff stats
doc/api/issues.md
| ... | ... | @@ -25,7 +25,7 @@ GET /issues |
| 25 | 25 | "blocked": false, |
| 26 | 26 | "created_at": "2012-05-23T08:00:58Z" |
| 27 | 27 | }, |
| 28 | - "state": 'closed', | |
| 28 | + "state": "closed", | |
| 29 | 29 | "updated_at": "2012-07-02T17:53:12Z", |
| 30 | 30 | "created_at": "2012-07-02T17:53:12Z" |
| 31 | 31 | }, |
| ... | ... | @@ -42,7 +42,7 @@ GET /issues |
| 42 | 42 | "title": "v1.0", |
| 43 | 43 | "description": "", |
| 44 | 44 | "due_date": "2012-07-20", |
| 45 | - "state": 'reopenend', | |
| 45 | + "state": "reopenend", | |
| 46 | 46 | "updated_at": "2012-07-04T13:42:48Z", |
| 47 | 47 | "created_at": "2012-07-04T13:42:48Z" |
| 48 | 48 | }, |
| ... | ... | @@ -62,7 +62,7 @@ GET /issues |
| 62 | 62 | "blocked": false, |
| 63 | 63 | "created_at": "2012-05-23T08:00:58Z" |
| 64 | 64 | }, |
| 65 | - "state": 'opened', | |
| 65 | + "state": "opened", | |
| 66 | 66 | "updated_at": "2012-07-12T13:43:19Z", |
| 67 | 67 | "created_at": "2012-06-28T12:58:06Z" |
| 68 | 68 | } |
| ... | ... | @@ -111,7 +111,7 @@ Parameters: |
| 111 | 111 | "title": "v1.0", |
| 112 | 112 | "description": "", |
| 113 | 113 | "due_date": "2012-07-20", |
| 114 | - "state": 'closed', | |
| 114 | + "state": "closed", | |
| 115 | 115 | "updated_at": "2012-07-04T13:42:48Z", |
| 116 | 116 | "created_at": "2012-07-04T13:42:48Z" |
| 117 | 117 | }, |
| ... | ... | @@ -131,7 +131,7 @@ Parameters: |
| 131 | 131 | "blocked": false, |
| 132 | 132 | "created_at": "2012-05-23T08:00:58Z" |
| 133 | 133 | }, |
| 134 | - "state": 'opened', | |
| 134 | + "state": "opened", | |
| 135 | 135 | "updated_at": "2012-07-12T13:43:19Z", |
| 136 | 136 | "created_at": "2012-06-28T12:58:06Z" |
| 137 | 137 | } |
| ... | ... | @@ -190,4 +190,3 @@ Parameters: |
| 190 | 190 | |
| 191 | 191 | + `id` (required) - The project ID |
| 192 | 192 | + `issue_id` (required) - The ID of the issue |
| 193 | - | ... | ... |