From 50097044da79fa22afdabceaf2aa824a58066f06 Mon Sep 17 00:00:00 2001 From: Shahid Ahmad Date: Tue, 4 Apr 2017 17:05:16 +0500 Subject: [PATCH] fix function spelling mistake issue #15 (#16) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3b784a..5a7d7b9 100644 --- a/README.md +++ b/README.md @@ -948,7 +948,7 @@ function say { say "hello world!" ``` -When you run the above example the `hello` function will output "world!". The above two functions `hello` and `say` are identical. The main difference is function `say`. This function, prints the first argument it receives. Arguments, within funtions, are treated in the same manner as arguments given to the script. +When you run the above example the `hello` function will output "world!". The above two functions `hello` and `say` are identical. The main difference is function `say`. This function, prints the first argument it receives. Arguments, within functions, are treated in the same manner as arguments given to the script. ## 2.4. Conditionals