diff options
author | Claudio Busatto <c.busatto@wille-enginering.com> | 2019-03-27 20:00:34 +0100 |
---|---|---|
committer | Claudio Busatto <c.busatto@wille-enginering.com> | 2019-03-27 20:00:34 +0100 |
commit | fc7e08639656cba77170160880f505d9f3dfe044 (patch) | |
tree | 85df243e8fc609a038882b1fff932771681f1ecc /pt-br | |
parent | 56e7570b12b001d4c094c9a8b8b10508f3db6f19 (diff) |
User data has to follow the grammar
of the target language
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/coffeescript-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/coffeescript-pt.html.markdown b/pt-br/coffeescript-pt.html.markdown index 03098e90..7129a463 100644 --- a/pt-br/coffeescript-pt.html.markdown +++ b/pt-br/coffeescript-pt.html.markdown @@ -91,9 +91,9 @@ cubes = (math.cube num for num in list) # return _results; # })(); -comidas = ['brocolis', 'espinafre', 'chocolate'] +comidas = ['brĂ³colis', 'espinafre', 'chocolate'] eat alimento for alimento in comidas when alimento isnt 'chocolate' -#=>comidas = ['brocolis', 'espinafre', 'chocolate']; +#=>comidas = ['brĂ³colis', 'espinafre', 'chocolate']; # #for (_k = 0, _len2 = comidas.length; _k < _len2; _k++) { # alimento = comidas[_k]; |