summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com>2022-07-13 22:08:51 +0200
committerGitHub <noreply@github.com>2022-07-13 22:08:51 +0200
commitafedfe828707f894c61079b03837f44501452838 (patch)
treeeb7d513e5576b4cfd5d1b8ac53b9589aa5b9f999
parent053301108ba0f99f7289d33be82ed6d9615a2adf (diff)
parent09694f73dbfd89743e4d9726c8bf53f97cd017b5 (diff)
Merge pull request #4316 from gabrielsroka/patch-1
[bash/en] fix typo
-rw-r--r--bash.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown
index 8fdfdf08..c9a805ba 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -112,7 +112,7 @@ echo ${array0[@]} # => "one two three four five six"
echo ${#array0[@]} # => "6"
# Print number of characters in third element
echo ${#array0[2]} # => "5"
-# Print 2 elements starting from forth
+# Print 2 elements starting from fourth
echo ${array0[@]:3:2} # => "four five"
# Print all elements. Each of them on new line.
for i in "${array0[@]}"; do