summaryrefslogtreecommitdiffhomepage
path: root/pt-br/clojure-pt.html.markdown
diff options
context:
space:
mode:
authorRaphael <raphaelsantos.j@gmail.com>2019-06-01 10:32:20 -0300
committerRaphael <raphaelsantos.j@gmail.com>2019-06-01 10:32:20 -0300
commit9f7893995ca5653ccb651181a76d7bb19883a43a (patch)
treebbfb9f04df54364a0921eb1093df0f4353cb2cef /pt-br/clojure-pt.html.markdown
parent15bc68c200f21e84d37a814826a73186e91b49e8 (diff)
fix some typos
Diffstat (limited to 'pt-br/clojure-pt.html.markdown')
-rw-r--r--pt-br/clojure-pt.html.markdown2
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)