Merge pull request #5230 from cmckni3/patch-1
Fix invalid json in API docs
This commit is contained in:
commit
073c8a2966
2 changed files with 14 additions and 15 deletions
|
@ -83,22 +83,22 @@ GET /groups/:id/members
|
|||
```json
|
||||
[
|
||||
{
|
||||
id: 1,
|
||||
username: "raymond_smith",
|
||||
email: "ray@smith.org",
|
||||
name: "Raymond Smith",
|
||||
state: "active",
|
||||
created_at: "2012-10-22T14:13:35Z",
|
||||
access_level: 30
|
||||
"id": 1,
|
||||
"username": "raymond_smith",
|
||||
"email": "ray@smith.org",
|
||||
"name": "Raymond Smith",
|
||||
"state": "active",
|
||||
"created_at": "2012-10-22T14:13:35Z",
|
||||
"access_level": 30
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
username: "john_doe",
|
||||
email: "joh@doe.org",
|
||||
name: "John Doe",
|
||||
state: "active",
|
||||
created_at: "2012-10-22T14:13:35Z",
|
||||
access_level: 30
|
||||
"id": 2,
|
||||
"username": "john_doe",
|
||||
"email": "joh@doe.org",
|
||||
"name": "John Doe",
|
||||
"state": "active",
|
||||
"created_at": "2012-10-22T14:13:35Z",
|
||||
"access_level": 30
|
||||
}
|
||||
]
|
||||
```
|
||||
|
|
|
@ -190,4 +190,3 @@ Parameters:
|
|||
|
||||
+ `id` (required) - The project ID
|
||||
+ `issue_id` (required) - The ID of the issue
|
||||
|
||||
|
|
Loading…
Reference in a new issue