From 4ee78342663ef458942eef2007084fcf881b3f87 Mon Sep 17 00:00:00 2001 From: Chris McKnight Date: Mon, 30 Sep 2013 21:45:15 -0500 Subject: [PATCH] Fix json keys in groups API documentation --- doc/api/groups.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/doc/api/groups.md b/doc/api/groups.md index fb77901..47c7c1b 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -70,22 +70,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 } ] ``` -- libgit2 0.21.2