Browse code

Merge pull request #6640 from ostezer/commands.go-linguistics-1

docker help -> grammatical correction (pos. adj. apost.)

Victor Vieux authored on 2014/06/27 03:59:49
Showing 5 changed files
... ...
@@ -55,7 +55,7 @@ func (cli *DockerCli) CmdHelp(args ...string) error {
55 55
 		{"attach", "Attach to a running container"},
56 56
 		{"build", "Build an image from a Dockerfile"},
57 57
 		{"commit", "Create a new image from a container's changes"},
58
-		{"cp", "Copy files/folders from the containers filesystem to the host path"},
58
+		{"cp", "Copy files/folders from a container's filesystem to the host path"},
59 59
 		{"diff", "Inspect changes on a container's filesystem"},
60 60
 		{"events", "Get real time events from the server"},
61 61
 		{"export", "Stream the contents of a container as a tar archive"},
... ...
@@ -85,7 +85,7 @@ complete -c docker -A -f -n '__fish_seen_subcommand_from commit' -l run -d 'Conf
85 85
 complete -c docker -A -f -n '__fish_seen_subcommand_from commit' -a '(__fish_print_docker_containers all)' -d "Container"
86 86
 
87 87
 # cp
88
-complete -c docker -f -n '__fish_docker_no_subcommand' -a cp -d 'Copy files/folders from the containers filesystem to the host path'
88
+complete -c docker -f -n '__fish_docker_no_subcommand' -a cp -d 'Copy files/folders from a container's filesystem to the host path'
89 89
 
90 90
 # diff
91 91
 complete -c docker -f -n '__fish_docker_no_subcommand' -a diff -d "Inspect changes on a container's filesystem"
... ...
@@ -8,7 +8,7 @@ docker-cp - Copy files/folders from the PATH to the HOSTPATH
8 8
 **docker cp** CONTAINER:PATH HOSTPATH
9 9
 
10 10
 # DESCRIPTION
11
-Copy files/folders from the containers filesystem to the host
11
+Copy files/folders from a container's filesystem to the host
12 12
 path. Paths are relative to the root of the filesystem. Files
13 13
 can be copied from a running or stopped container.
14 14
 
... ...
@@ -87,7 +87,7 @@ unix://[/path/to/socket] to use.
87 87
   Create a new image from a container's changes
88 88
 
89 89
 **docker-cp(1)**
90
-  Copy files/folders from the containers filesystem to the host at path
90
+  Copy files/folders from a container's filesystem to the host at path
91 91
 
92 92
 **docker-diff(1)**
93 93
   Inspect changes on a container's filesystem
... ...
@@ -329,7 +329,7 @@ maintainable way.
329 329
 
330 330
 ## cp
331 331
 
332
-Copy files/folders from the containers filesystem to the host
332
+Copy files/folders from a container's filesystem to the host
333 333
 path.  Paths are relative to the root of the filesystem.
334 334
 
335 335
     Usage: docker cp CONTAINER:PATH HOSTPATH