Skip to content

Commit

Permalink
Minor cheat sheet grammar correction: use 'into' when describing func…
Browse files Browse the repository at this point in the history
…tion currying
  • Loading branch information
ktully committed Oct 28, 2012
1 parent b4f82f5 commit 502d65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CheatSheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ These are functions that take a function as a parameter or return functions.

## Currying

Converting a function with multiple arguments in a function with a
Converting a function with multiple arguments into a function with a
single argument that returns another function.

def f(a: Int, b: Int): Int // uncurried version (type is (Int, Int) => Int)
Expand Down

0 comments on commit 502d65d

Please sign in to comment.