From 4aaa7a41dacbe30822bff90e590c9af9e275b545 Mon Sep 17 00:00:00 2001 From: John Bacon Date: Mon, 2 Jun 2014 19:07:54 -0400 Subject: [PATCH] Adds a comma to the description of recursion Parenthetical elements should be set off using a comma. --- _posts/03-02-01-Programming-Paradigms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/03-02-01-Programming-Paradigms.md b/_posts/03-02-01-Programming-Paradigms.md index bc7c486..945a3f7 100644 --- a/_posts/03-02-01-Programming-Paradigms.md +++ b/_posts/03-02-01-Programming-Paradigms.md @@ -23,7 +23,7 @@ PHP supports first-class function, meaning that a function can be assigned to a functions can be referenced by a variable and invoked dynamically. Functions can be passed as arguments to other functions (feature called Higher-order functions) and function can return other functions. -Recursion, a feature that allows a function to call itself is supported by the language, but most of the PHP code focus +Recursion, a feature that allows a function to call itself, is supported by the language, but most of the PHP code focus on iteration. New anonymous functions (with support for closures) are present since PHP 5.3 (2009).