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,7 +25,7 @@ GET /issues | ||
25 | "blocked": false, | 25 | "blocked": false, |
26 | "created_at": "2012-05-23T08:00:58Z" | 26 | "created_at": "2012-05-23T08:00:58Z" |
27 | }, | 27 | }, |
28 | - "state": 'closed', | 28 | + "state": "closed", |
29 | "updated_at": "2012-07-02T17:53:12Z", | 29 | "updated_at": "2012-07-02T17:53:12Z", |
30 | "created_at": "2012-07-02T17:53:12Z" | 30 | "created_at": "2012-07-02T17:53:12Z" |
31 | }, | 31 | }, |
@@ -42,7 +42,7 @@ GET /issues | @@ -42,7 +42,7 @@ GET /issues | ||
42 | "title": "v1.0", | 42 | "title": "v1.0", |
43 | "description": "", | 43 | "description": "", |
44 | "due_date": "2012-07-20", | 44 | "due_date": "2012-07-20", |
45 | - "state": 'reopenend', | 45 | + "state": "reopenend", |
46 | "updated_at": "2012-07-04T13:42:48Z", | 46 | "updated_at": "2012-07-04T13:42:48Z", |
47 | "created_at": "2012-07-04T13:42:48Z" | 47 | "created_at": "2012-07-04T13:42:48Z" |
48 | }, | 48 | }, |
@@ -62,7 +62,7 @@ GET /issues | @@ -62,7 +62,7 @@ GET /issues | ||
62 | "blocked": false, | 62 | "blocked": false, |
63 | "created_at": "2012-05-23T08:00:58Z" | 63 | "created_at": "2012-05-23T08:00:58Z" |
64 | }, | 64 | }, |
65 | - "state": 'opened', | 65 | + "state": "opened", |
66 | "updated_at": "2012-07-12T13:43:19Z", | 66 | "updated_at": "2012-07-12T13:43:19Z", |
67 | "created_at": "2012-06-28T12:58:06Z" | 67 | "created_at": "2012-06-28T12:58:06Z" |
68 | } | 68 | } |
@@ -111,7 +111,7 @@ Parameters: | @@ -111,7 +111,7 @@ Parameters: | ||
111 | "title": "v1.0", | 111 | "title": "v1.0", |
112 | "description": "", | 112 | "description": "", |
113 | "due_date": "2012-07-20", | 113 | "due_date": "2012-07-20", |
114 | - "state": 'closed', | 114 | + "state": "closed", |
115 | "updated_at": "2012-07-04T13:42:48Z", | 115 | "updated_at": "2012-07-04T13:42:48Z", |
116 | "created_at": "2012-07-04T13:42:48Z" | 116 | "created_at": "2012-07-04T13:42:48Z" |
117 | }, | 117 | }, |
@@ -131,7 +131,7 @@ Parameters: | @@ -131,7 +131,7 @@ Parameters: | ||
131 | "blocked": false, | 131 | "blocked": false, |
132 | "created_at": "2012-05-23T08:00:58Z" | 132 | "created_at": "2012-05-23T08:00:58Z" |
133 | }, | 133 | }, |
134 | - "state": 'opened', | 134 | + "state": "opened", |
135 | "updated_at": "2012-07-12T13:43:19Z", | 135 | "updated_at": "2012-07-12T13:43:19Z", |
136 | "created_at": "2012-06-28T12:58:06Z" | 136 | "created_at": "2012-06-28T12:58:06Z" |
137 | } | 137 | } |
@@ -190,4 +190,3 @@ Parameters: | @@ -190,4 +190,3 @@ Parameters: | ||
190 | 190 | ||
191 | + `id` (required) - The project ID | 191 | + `id` (required) - The project ID |
192 | + `issue_id` (required) - The ID of the issue | 192 | + `issue_id` (required) - The ID of the issue |
193 | - |