Browse Source

Fix plural typo in 'save' command help

The form "Save an images" is not correct.
Either "Save an image" or "Save images" work, but since
the save commands accepts multiple images, I chose the
latter.

Fixed in all places where I could grep "Save an image(s)".

Signed-off-by: Martin Mosegaard Amdisen <martin.amdisen@praqma.com>
Martin Mosegaard Amdisen 9 years ago
parent
commit
a826c244ed
4 changed files with 4 additions and 4 deletions
  1. 1 1
      cli/common.go
  2. 1 1
      docs/reference/commandline/save.md
  3. 1 1
      man/docker-load.1.md
  4. 1 1
      man/docker-save.1.md

+ 1 - 1
cli/common.go

@@ -56,7 +56,7 @@ var dockerCommands = []Command{
 	{"rm", "Remove one or more containers"},
 	{"rm", "Remove one or more containers"},
 	{"rmi", "Remove one or more images"},
 	{"rmi", "Remove one or more images"},
 	{"run", "Run a command in a new container"},
 	{"run", "Run a command in a new container"},
-	{"save", "Save an image(s) to a tar archive"},
+	{"save", "Save images to a tar archive"},
 	{"search", "Search the Docker Hub for images"},
 	{"search", "Search the Docker Hub for images"},
 	{"start", "Start one or more stopped containers"},
 	{"start", "Start one or more stopped containers"},
 	{"stats", "Display a live stream of container(s) resource usage statistics"},
 	{"stats", "Display a live stream of container(s) resource usage statistics"},

+ 1 - 1
docs/reference/commandline/save.md

@@ -12,7 +12,7 @@ parent = "smn_cli"
 
 
     Usage: docker save [OPTIONS] IMAGE [IMAGE...]
     Usage: docker save [OPTIONS] IMAGE [IMAGE...]
 
 
-    Save an image(s) to a tar archive (streamed to STDOUT by default)
+    Save images to a tar archive (streamed to STDOUT by default)
 
 
       --help             Print usage
       --help             Print usage
       -o, --output=""    Write to a file, instead of STDOUT
       -o, --output=""    Write to a file, instead of STDOUT

+ 1 - 1
man/docker-load.1.md

@@ -37,7 +37,7 @@ Restores both images and tags.
     fedora              latest              58394af37342        7 weeks ago         385.5 MB
     fedora              latest              58394af37342        7 weeks ago         385.5 MB
 
 
 # See also
 # See also
-**docker-save(1)** to save an image(s) to a tar archive (streamed to STDOUT by default).
+**docker-save(1)** to save images to a tar archive (streamed to STDOUT by default).
 
 
 # HISTORY
 # HISTORY
 April 2014, Originally compiled by William Henry (whenry at redhat dot com)
 April 2014, Originally compiled by William Henry (whenry at redhat dot com)

+ 1 - 1
man/docker-save.1.md

@@ -2,7 +2,7 @@
 % Docker Community
 % Docker Community
 % JUNE 2014
 % JUNE 2014
 # NAME
 # NAME
-docker-save - Save an image(s) to a tar archive (streamed to STDOUT by default)
+docker-save - Save images to a tar archive (streamed to STDOUT by default)
 
 
 # SYNOPSIS
 # SYNOPSIS
 **docker save**
 **docker save**