summaryrefslogtreecommitdiffhomepage
path: root/groovy.html.markdown
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2016-02-15 11:03:10 -0800
committerSenthil Kumaran <senthil@uthcode.com>2016-02-15 11:03:10 -0800
commit1d785f8e84fd5eb0dbf6b6df28044568739684fd (patch)
tree0ac299c48f512494415439b7fdd1110092c9e0bf /groovy.html.markdown
parent712c9f342ff054039bd8e93a43be6ea0846ebc83 (diff)
memoize not memorize
Let's use the correct term instead of the tongue-in-cheek term denoting the same concept.
Diffstat (limited to 'groovy.html.markdown')
-rw-r--r--groovy.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/groovy.html.markdown b/groovy.html.markdown
index ea575248..94678c39 100644
--- a/groovy.html.markdown
+++ b/groovy.html.markdown
@@ -280,7 +280,7 @@ def clos = { print it }
clos( "hi" )
/*
- Groovy can memorize closure results [1][2][3]
+ Groovy can memoize closure results [1][2][3]
*/
def cl = {a, b ->
sleep(3000) // simulate some time consuming processing