From 40e9799366cb019a306ffd54af9572b2dadb8d8c Mon Sep 17 00:00:00 2001 From: Thomas Jaensch Date: Thu, 31 Mar 2016 15:42:04 -0400 Subject: [PATCH] Fixed grammar error on line 541 in Bash-Prog-Intro-HOWTO.sgml --- LDP/howto/linuxdoc/Bash-Prog-Intro-HOWTO.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LDP/howto/linuxdoc/Bash-Prog-Intro-HOWTO.sgml b/LDP/howto/linuxdoc/Bash-Prog-Intro-HOWTO.sgml index 0af28894..d3995a73 100644 --- a/LDP/howto/linuxdoc/Bash-Prog-Intro-HOWTO.sgml +++ b/LDP/howto/linuxdoc/Bash-Prog-Intro-HOWTO.sgml @@ -538,7 +538,7 @@ Functions

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!. -

Notice that a functions don't need to be declared in any specific order. +

Notice that functions don't need to be declared in any specific order.

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.