Merge pull request #3507 from cjcbusatto/master

[coffeescript/pt-br] Fix typos and layout
This commit is contained in:
Divay Prakash 2019-04-02 22:07:51 +05:30 committed by GitHub
commit 06a5fd28ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ language: coffeescript
contributors:
- ["Tenor Biel", "http://github.com/L8D"]
- ["Xavier Yao", "http://github.com/xavieryao"]
- ["Claudio Busatto", "http://github.com/cjcbusatto"]
translators:
- ["Miguel Araújo", "https://github.com/miguelarauj1o"]
lang: pt-br
@ -31,24 +32,24 @@ Você deveria entender mais de semântica de JavaScript antes de continuar...
###
# Tarefa:
numero = 42 #=> número var = 42;
numero = 42 #=> var numero = 42;
oposto = true #=> var oposto = true;
# Condições:
numero = -42 if oposto #=> if (oposto) {número = -42;}
numero = -42 if oposto #=> if (oposto) {numero = -42;}
# Funções:
quadrado = (x) -> x * x #=> var quadrado = function (x) {return x * x;}
preencher = (recipiente, líquido = "coffee") ->
"Preenchendo o #{recipiente} with #{líquido}..."
preencher = (recipiente, liquido = "coffee") ->
"Preenchendo o #{recipiente} with #{liquido}..."
#=>var preencher;
#
#preencher = function(recipiente, líquido) {
# if (líquido == null) {
# líquido = "coffee";
#preencher = function(recipiente, liquido) {
# if (liquido == null) {
# liquido = "coffee";
# }
# return "Preenchendo o " + recipiente + " with " + líquido + "...";
# return "Preenchendo o " + recipiente + " with " + liquido + "...";
#};
# Alcances:
@ -99,6 +100,7 @@ eat alimento for alimento in comidas when alimento isnt 'chocolate'
# if (alimento !== 'chocolate') {
# eat(alimento);
# }
```
## Recursos adicionais