summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorEmilySeville7cfg <EmilySeville7cf@gmail.com>2022-08-19 09:53:55 +1000
committerEmilySeville7cfg <EmilySeville7cf@gmail.com>2022-08-19 09:53:55 +1000
commited1ca1c70e24dea4b92e7dcb3ac391de6988ca22 (patch)
tree4a7d448ee1df0e48ebe0e934f61c87cbda66f4f3 /bash.html.markdown
parent524969c42c82e58fe1acf5ebcd9afe67a51142ca (diff)
Update bash help:
- remove trailing spaces
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 4ab800a4..3f1e8b70 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -42,8 +42,8 @@ echo "Hello world!" # => Hello world!
# Each command starts on a new line, or after a semicolon:
echo "This is the first command"; echo "This is the second command"
-# => This is the first command
-# => This is the second command
+# => This is the first command
+# => This is the second command
# Declaring a variable looks like this:
variable="Some string"