diff options
| author | Senthil Kumaran <senthil@uthcode.com> | 2016-02-15 11:03:10 -0800 | 
|---|---|---|
| committer | Senthil Kumaran <senthil@uthcode.com> | 2016-02-15 11:03:10 -0800 | 
| commit | 1d785f8e84fd5eb0dbf6b6df28044568739684fd (patch) | |
| tree | 0ac299c48f512494415439b7fdd1110092c9e0bf | |
| parent | 712c9f342ff054039bd8e93a43be6ea0846ebc83 (diff) | |
memoize not memorize
Let's use the correct term instead of the tongue-in-cheek term denoting the same concept.
| -rw-r--r-- | groovy.html.markdown | 2 | 
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 | 
