summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorEtan Reisner <deryni@unreliablesource.net>2015-04-27 07:30:17 -0400
committerEtan Reisner <deryni@unreliablesource.net>2015-04-27 07:30:17 -0400
commitaa11cc659de990a6c4d4104bcc733f373b079ae7 (patch)
treec5c948f928c7bcd301ee4fc30026c086d95252f8 /bash.html.markdown
parente2ca2c9550474ca3dad0f7ef8735e614da081258 (diff)
Follow variable capitalization on this branch.
Diffstat (limited to 'bash.html.markdown')
-rw-r--r--bash.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown
index 77ee37f6..e0c12f97 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -40,9 +40,9 @@ VARIABLE = "Some string"
# because it can't be found.
# Or like this:
-Variable= 'Some string'
+VARIABLE= 'Some string'
# Bash will decide that 'Some string' is a command it must execute and give an
-# error because it can't be found. (In this case the 'Variable=' part is seen
+# error because it can't be found. (In this case the 'VARIABLE=' part is seen
# as a variable assignment valid only for the scope of the 'Some string'
# command.)