Browse code

Fix directive example to match description

The description claims the directive is appearing after a comment but
the sample Dockerfile has the directive appear after an instruction.
Changed the ordering of the lines to match the example's description.

Signed-off-by: Remy Suen <remy.suen@gmail.com>

Remy Suen authored on 2017/03/10 07:11:30
Showing 1 changed files
... ...
@@ -199,8 +199,8 @@ directive:
199 199
 
200 200
 ```Dockerfile
201 201
 # About my dockerfile
202
-FROM ImageName
203 202
 # directive=value
203
+FROM ImageName
204 204
 ```
205 205
 
206 206
 The unknown directive is treated as a comment due to not being recognized. In