From e81421a5d1e87feea1f5e3c778e7453994def744 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Wed, 21 Nov 2018 10:31:11 +0000 Subject: [PATCH] docs: Remove bang from code block Remove the `!` from the `echo` in the code example in the doc requirements doc. The current code is in fact invalid as the shell will try to interpret the exclamation mark as it is a reserved word. Rather than escaping it in the example, just remove it. Signed-off-by: James O. D. Hunt --- Documentation-Requirements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation-Requirements.md b/Documentation-Requirements.md index 0b31f841b9..5a911a141a 100644 --- a/Documentation-Requirements.md +++ b/Documentation-Requirements.md @@ -72,7 +72,7 @@ utility. ```bash $ echo "Hi - I am some bash code" $ sudo docker run -ti busybox true - $ [ $? -eq 0 ] && echo "success!" + $ [ $? -eq 0 ] && echo "success" ``` ```