Browse code

Use 'null' instead of 'nil' for json

When describe json response, 'null' is better than 'nil' which is not in
json specification.

Signed-off-by: Yi EungJun <eungjun.yi@navercorp.com>

Yi EungJun authored on 2016/04/06 16:10:30
Showing 1 changed files
... ...
@@ -196,8 +196,8 @@ should implement the following two methods:
196 196
    "Allow":              "Determined whether the user is allowed or not",
197 197
    "Msg":                "The authorization message",
198 198
    "Err":                "The error message if things go wrong",
199
-   "ModifiedBody":       "Byte array containing a modified body of the raw HTTP body (or nil if no changes required)",
200
-   "ModifiedHeader":     "Byte array containing a modified header of the HTTP response (or nil if no changes required)",
199
+   "ModifiedBody":       "Byte array containing a modified body of the raw HTTP body (or null if no changes required)",
200
+   "ModifiedHeader":     "Byte array containing a modified header of the HTTP response (or null if no changes required)",
201 201
    "ModifiedStatusCode": "int containing the modified version of the status code (or 0 if not change is required)"
202 202
 }
203 203
 ```