1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 17:54:26 +02:00

change array comprehension title and add translator

This commit is contained in:
Frederik Ring
2014-08-21 13:53:07 +02:00
parent 1a9cf39190
commit 98ce82761f

View File

@@ -5,6 +5,7 @@ contributors:
- ["Xavier Yao", "http://github.com/xavieryao"]
translators:
- ["Frederik Ring", "https://github.com/m90"]
- ["Philipp Fischbeck", "https://github.com/PFischbeck"]
filename: coffeescript-de.coffee
lang: de-de
---
@@ -75,7 +76,7 @@ race = (winner, runners...) ->
alert "Hab ich's nicht gesagt?" if elvis?
#=> if(typeof elvis !== "undefined" && elvis !== null) { alert("Hab ich's nicht gesagt?"); }
# Zuordnungen:
# Listen-Abstraktion:
cubes = (math.cube num for num in list)
#=>cubes = (function() {
# var _i, _len, _results;