From 6132c35c04e1a3c2850f7f55733cefb100bf28de Mon Sep 17 00:00:00 2001 From: Mihai Borobocea Date: Sat, 20 Aug 2016 16:19:05 +0300 Subject: [PATCH] docs: fix typo in url fragment I noticed the broken hyperlink in this page: https://docs.docker.com/engine/reference/builder/ The link should point to `#parser-directives`. Signed-off-by: Mihai Borobocea --- docs/reference/builder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/builder.md b/docs/reference/builder.md index 5975110fe4..2a21056ad8 100644 --- a/docs/reference/builder.md +++ b/docs/reference/builder.md @@ -120,7 +120,7 @@ instruction must be \`FROM\`** in order to specify the [*Base Image*](glossary.md#base-image) from which you are building. Docker treats lines that *begin* with `#` as a comment, unless the line is -a valid [parser directive](builder.md#parser directives). A `#` marker anywhere +a valid [parser directive](builder.md#parser-directives). A `#` marker anywhere else in a line is treated as an argument. This allows statements like: ```Dockerfile