Skip to content

Commit

Permalink
Typo fixes in the Programming Paradigms post.
Browse files Browse the repository at this point in the history
  • Loading branch information
rszrama committed Mar 13, 2015
1 parent 876c326 commit f054643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _posts/03-02-01-Programming-Paradigms.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ interfaces, inheritance, constructors, cloning, exceptions, and more.

### Functional Programming

PHP supports first-class function, meaning that a function can be assigned to a variable. Both user-defined and
PHP supports first-class functions, meaning that a function can be assigned to a variable. Both user-defined and
built-in functions can be referenced by a variable and invoked dynamically. Functions can be passed as arguments to
other functions (a feature called _Higher-order Functions_) and function can return other functions.
other functions (a feature called _Higher-order Functions_) and functions can return other functions.

Recursion, a feature that allows a function to call itself, is supported by the language, but most PHP code
is focused on iteration.
Expand Down

0 comments on commit f054643

Please sign in to comment.