diff options
author | Raphael <raphaelsantos.j@gmail.com> | 2019-06-01 10:32:20 -0300 |
---|---|---|
committer | Raphael <raphaelsantos.j@gmail.com> | 2019-06-01 10:32:20 -0300 |
commit | 9f7893995ca5653ccb651181a76d7bb19883a43a (patch) | |
tree | bbfb9f04df54364a0921eb1093df0f4353cb2cef | |
parent | 15bc68c200f21e84d37a814826a73186e91b49e8 (diff) |
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) |