From ef7aab4ab8aada83232b9c8c320e090c832d09e0 Mon Sep 17 00:00:00 2001 From: Jason Shearer Date: Thu, 18 Jun 2020 16:01:49 -0700 Subject: [PATCH] Fixed typo --- languages/bash.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/bash.sh b/languages/bash.sh index d65d7a1..0334a06 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -175,10 +175,10 @@ ${array[i]} # displays array's value for this index. If no inde ${#array[i]} # to find out the length of any element in the array ${#array[@]} # to find out how many values there are in the array -declare -a # the variables are treaded as arrays +declare -a # the variables are treated as arrays declare -f # uses function names only declare -F # displays function names without definitions -declare -i # the variables are treaded as integers +declare -i # the variables are treated as integers declare -r # makes the variables read-only declare -x # marks the variables for export via the environment