Przeglądaj źródła

spelling fix from Marc MERLIN

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
Sven Dowideit 10 lat temu
rodzic
commit
bba5fd8caa
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      docs/sources/reference/builder.md

+ 2 - 2
docs/sources/reference/builder.md

@@ -892,11 +892,11 @@ consider the following Dockerfile snippet:
 
     FROM ubuntu
     RUN mkdir /myvol
-    RUN echo "hello world" > /myvol/greating
+    RUN echo "hello world" > /myvol/greeting
     VOLUME /myvol
 
 This Dockerfile results in an image that causes `docker run`, to
-create a new mount point at `/myvol` and copy the  `greating` file 
+create a new mount point at `/myvol` and copy the  `greeting` file 
 into the newly created volume.
 
 > **Note**: