diff options
| -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) #=> ...  ``` | 
