diff options
author | Pratik Karki <predatoramigo@gmail.com> | 2018-01-17 22:16:04 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 22:16:04 +0545 |
commit | eb3918dd08d7951a65a1f8fba63a394ecb197d99 (patch) | |
tree | 1dc328303a9e1c2f620d400282ec11973814699f /pt-br | |
parent | 70a36c9bd970b928adde06afb2bd69f6ba8e5d5c (diff) | |
parent | c52ae61127b9b50f39e45876c672ed73ce4e2125 (diff) |
Merge pull request #3030 from andys8/elm-tuple-access
[elm] Update code to access tuples
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". |