From 46cb6799bfa85aaf47e9b4aeecd5387302f767a3 Mon Sep 17 00:00:00 2001 From: Simon Knox Date: Fri, 13 Dec 2019 07:41:28 +1100 Subject: [PATCH] Fix typo --- docs/Bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Bash.md b/docs/Bash.md index 6528bdd..ff28d6b 100644 --- a/docs/Bash.md +++ b/docs/Bash.md @@ -50,7 +50,7 @@ An attempt to bring order in good advice on writing Bash scripts I collected fro - Environment (exported) variables: `${ALL_CAPS}` - Local variables: `${lower_case}` - Positional parameters of the script should be checked, those of functions should not -- Some loops happen in subprocesses, so don’t be surprised when setting variabless does nothing after them. Use stdout and `grep`ing to communicate status. +- Some loops happen in subprocesses, so don’t be surprised when setting variables does nothing after them. Use stdout and `grep`ing to communicate status. ## Substitution