Browse Source

Docs: fix wrong example of API Exec

The last "," should not shown up, otherwise you will get the error
back as below:
- invalid character '}' looking for beginning of object key string.

Signed-off-by: Hu Keping <hukeping@huawei.com>
Hu Keping 10 years ago
parent
commit
221fa4c3d1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/reference/api/docker_remote_api_v1.20.md

+ 2 - 2
docs/reference/api/docker_remote_api_v1.20.md

@@ -1875,7 +1875,7 @@ Sets up an exec instance in a running container `id`
        "Tty": false,
        "Tty": false,
        "Cmd": [
        "Cmd": [
                      "date"
                      "date"
-             ],
+             ]
       }
       }
 
 
 **Example response**:
 **Example response**:
@@ -1917,7 +1917,7 @@ interactive session with the `exec` command.
 
 
     {
     {
      "Detach": false,
      "Detach": false,
-     "Tty": false,
+     "Tty": false
     }
     }
 
 
 **Example response**:
 **Example response**: