From c30b5b0ee9d1011b675b0c8cfdc188e065f431d5 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Thu, 3 Aug 2017 11:50:08 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1272657..e727bd5 100755 --- a/README.md +++ b/README.md @@ -1037,7 +1037,7 @@ puti(i) // print 4 ### Lambda Functions -A Lambda function is a simple, anonymous function that can be passed to a function or assigned to a variable. It is called as a function pointer. The function can take a number of parameters and return a value based on the parameters and/or global values. By enclosing the expression of the lambda function in paranthesis, multiple values can be returned. +A Lambda function is a simple, anonymous function that can be passed to a function or assigned to a variable. It is called as a function pointer. The function can take a number of parameters and return a value based on the parameters and/or global values. By enclosing the expression of the lambda function in parenthesis, multiple values can be returned. ```