diff options
author | Nemil Dalal <nemild@gmail.com> | 2018-01-26 19:12:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 19:12:00 -0500 |
commit | 23c11c9a73baa3e316b183a5b4baa1da90b733da (patch) | |
tree | a774242d80d1ec1f4491d9618d4b85067f25303b /pt-br | |
parent | 84881b3cda80339deb8102ed21fd7ab83b00ea75 (diff) | |
parent | fce4a810cb066d6d83b829609ac15b08879cd1b0 (diff) |
Merge branch 'master' into update-to-latest-solidity
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/elm-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/elm-pt.html.markdown b/pt-br/elm-pt.html.markdown index 78a4f1b7..d2469a93 100644 --- a/pt-br/elm-pt.html.markdown +++ b/pt-br/elm-pt.html.markdown @@ -76,8 +76,8 @@ List.head [] -- Nothing -- Acesse os elementos de um par com as funções first e second. -- (Este é um atalho; nós iremos para o "caminho real" em breve.) -fst ("elm", 42) -- "elm" -snd ("elm", 42) -- 42 +Tuple.first ("elm", 42) -- "elm" +Tuple.second ("elm", 42) -- 42 -- Uma tupla vazia ou "unidade" às vezes é utilizada como um placeholder. -- É o único valor de seu tipo, também chamado de "Unit". |