Commit 073c8a296668ab1e06b01ebf0a9e94786227eef4

Authored by Dmitriy Zaporozhets
2 parents 83c727c5 4ee78342

Merge pull request #5230 from cmckni3/patch-1

Fix invalid json in API docs
Showing 2 changed files with 14 additions and 15 deletions   Show diff stats
doc/api/groups.md
@@ -83,22 +83,22 @@ GET /groups/:id/members @@ -83,22 +83,22 @@ GET /groups/:id/members
83 ```json 83 ```json
84 [ 84 [
85 { 85 {
86 - id: 1,  
87 - username: "raymond_smith",  
88 - email: "ray@smith.org",  
89 - name: "Raymond Smith",  
90 - state: "active",  
91 - created_at: "2012-10-22T14:13:35Z",  
92 - access_level: 30 86 + "id": 1,
  87 + "username": "raymond_smith",
  88 + "email": "ray@smith.org",
  89 + "name": "Raymond Smith",
  90 + "state": "active",
  91 + "created_at": "2012-10-22T14:13:35Z",
  92 + "access_level": 30
93 }, 93 },
94 { 94 {
95 - id: 2,  
96 - username: "john_doe",  
97 - email: "joh@doe.org",  
98 - name: "John Doe",  
99 - state: "active",  
100 - created_at: "2012-10-22T14:13:35Z",  
101 - access_level: 30 95 + "id": 2,
  96 + "username": "john_doe",
  97 + "email": "joh@doe.org",
  98 + "name": "John Doe",
  99 + "state": "active",
  100 + "created_at": "2012-10-22T14:13:35Z",
  101 + "access_level": 30
102 } 102 }
103 ] 103 ]
104 ``` 104 ```
doc/api/issues.md
@@ -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 -