diff options
author | Andre Polykanine <ap@oire.me> | 2019-06-05 01:16:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-05 01:16:17 +0300 |
commit | b261398c9f91733b64423cc58f719f6328385daf (patch) | |
tree | bbfb9f04df54364a0921eb1093df0f4353cb2cef | |
parent | 15bc68c200f21e84d37a814826a73186e91b49e8 (diff) | |
parent | 9f7893995ca5653ccb651181a76d7bb19883a43a (diff) |
Merge pull request #3543 from rphl-snts/fix-some-typos
[clojure/pt-br] fix some typos
-rw-r--r-- | pt-br/clojure-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/clojure-pt.html.markdown b/pt-br/clojure-pt.html.markdown index 7e8b3f7b..b88d4eec 100644 --- a/pt-br/clojure-pt.html.markdown +++ b/pt-br/clojure-pt.html.markdown @@ -340,7 +340,7 @@ keymap ; => {:a 1, :b 2, :c 3} (def my-atom (atom {})) ; Atualize o atom com um swap!. -; swap! pega uma funçnao and chama ela com o valor atual do atom +; swap! pega uma função e chama ela com o valor atual do atom ; como primeiro argumento, e qualquer argumento restante como o segundo (swap! my-atom assoc :a 1) ; Coloca o valor do átomo my-atom como o resultado de (assoc {} :a 1) (swap! my-atom assoc :b 2) ; Coloca o valor do átomo my-atom como o resultado de (assoc {:a 1} :b 2) |