1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

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>
Upstream-commit: b394f05fee
Component: cli
This commit is contained in:
Yi EungJun
2016-04-06 16:10:30 +09:00
committed by Tibor Vass
parent addfd813d1
commit fba2a6ea8a

View File

@@ -196,8 +196,8 @@ should implement the following two methods:
"Allow": "Determined whether the user is allowed or not",
"Msg": "The authorization message",
"Err": "The error message if things go wrong",
"ModifiedBody": "Byte array containing a modified body of the raw HTTP body (or nil if no changes required)",
"ModifiedHeader": "Byte array containing a modified header of the HTTP response (or nil if no changes required)",
"ModifiedBody": "Byte array containing a modified body of the raw HTTP body (or null if no changes required)",
"ModifiedHeader": "Byte array containing a modified header of the HTTP response (or null if no changes required)",
"ModifiedStatusCode": "int containing the modified version of the status code (or 0 if not change is required)"
}
```