浏览代码

Fixing typo in Dockerfile manpage

Signed-off-by: Brian Exelbierd <bex@pobox.com>
Brian (bex) Exelbierd 10 年之前
父节点
当前提交
d32e01be1a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/man/Dockerfile.5.md

+ 1 - 1
docs/man/Dockerfile.5.md

@@ -246,7 +246,7 @@ A Dockerfile is similar to a Makefile.
   passes the -d argument to the **ENTRYPOINT**.  Specify parameters either in the
   **ENTRYPOINT** JSON array (as in the preferred exec form above), or by using a **CMD**
   statement.  Parameters in the **ENTRYPOINT** are not overwritten by the docker run
-  arguments.  Parameters specifies via **CMD** are overwritten by docker run
+  arguments.  Parameters specified via **CMD** are overwritten by docker run
   arguments.  Specify a plain string for the **ENTRYPOINT**, and it will execute in
   `/bin/sh -c`, like a **CMD** instruction: