diff options
author | Adam <adam@adambard.com> | 2013-10-27 22:18:31 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-10-27 22:18:31 -0700 |
commit | dadd4c2a2bf180dccdc74a89a82cfe42db1cedb9 (patch) | |
tree | 94db3c6fd5dc197ce303464f5128696e794d56bf /es-es | |
parent | 7ff3de74fe941a220e6fb3e3e3434d90d0d51cc6 (diff) | |
parent | 0c523f4e95ef7dabfbd14a6a90f86035e01f75a4 (diff) |
Merged with latest from upstream
Diffstat (limited to 'es-es')
-rw-r--r-- | es-es/coffeescript-es.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/es-es/coffeescript-es.html.markdown b/es-es/coffeescript-es.html.markdown index 78bb9be5..6bf430e6 100644 --- a/es-es/coffeescript-es.html.markdown +++ b/es-es/coffeescript-es.html.markdown @@ -44,7 +44,7 @@ math = # "cube": function(x) { return x * square(x); } #} -# Símbolos: +# Número de argumentos variable: race = (winner, runners...) -> print winner, runners @@ -52,6 +52,6 @@ race = (winner, runners...) -> alert "I knew it!" if elvis? #=> if(typeof elvis !== "undefined" && elvis !== null) { alert("I knew it!"); } -# Colecciones por comprensión: +# Listas: cubes = (math.cube num for num in list) #=> ... ``` |