Simple Typo!

Stood out to me when I was going over bash functions for the umpteenth time :)
This commit is contained in:
Ryan MacLean 2019-08-27 09:18:23 -07:00 committed by GitHub
parent c75eee187f
commit 5b757d2f9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ Functions
echo foo
</verb></tscreen>
<P> Lines 2-4 contain the 'quit' function. Lines 5-7 contain the 'hello' function
If you are not absolutely sure about what this script does, please try it!.
If you are not absolutely sure about what this script does, please try it!
<P> Notice that functions don't need to be declared in any specific order.
<P> When running the script you'll notice that first: the function 'hello' is
called, second the 'quit' function, and the program never reaches line 10.