From b39fb9e15d042d4a220cfa1775a5ecbbb06d5cfa Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Tue, 6 Aug 2013 15:55:00 -0400 Subject: [PATCH] Fixed invalid JSON in REST API examples Change-Id: I1fdeeaf672ede2f260164c4d75376ee2ec2e33e7 --- Documentation/rest-api-groups.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/rest-api-groups.txt b/Documentation/rest-api-groups.txt index d8f021bdbc..6289e5a419 100644 --- a/Documentation/rest-api-groups.txt +++ b/Documentation/rest-api-groups.txt @@ -765,10 +765,10 @@ as a link:#members-input[MembersInput] entity. Content-Type: application/json;charset=UTF-8 { - "members": { + "members": [ "jane.roe@example.com", "john.doe@example.com" - } + ] } ---- @@ -838,10 +838,10 @@ body as a link:#members-input[MembersInput] entity. Content-Type: application/json;charset=UTF-8 { - "members": { + "members": [ "jane.roe@example.com", "john.doe@example.com" - } + ] } ----