diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-31 19:02:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 19:02:22 +0530 |
commit | 3e1787397b0a08889e6b29d9f74b12a0d506adfe (patch) | |
tree | 3c6b0b91187a0c7bb84b3ad15ba05f77e5672af0 | |
parent | 8f3ec39ccbb58452530fb6dc0e8f3c02e0e93c90 (diff) | |
parent | a9c9379d4f359c79f3d44687ee19e65eaae4208c (diff) |
Merge pull request #3375 from thiagofribeiro/patch-5
[paren/pt-br] Small typos
-rw-r--r-- | pt-br/paren-pt.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pt-br/paren-pt.html.markdown b/pt-br/paren-pt.html.markdown index 464a69d2..92414ba3 100644 --- a/pt-br/paren-pt.html.markdown +++ b/pt-br/paren-pt.html.markdown @@ -182,8 +182,8 @@ a ; => (3 2) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Macros lhe permitem estender a sintaxe da linguagem. -;; Os macros no Paren são fáceis. -;; Na verdade, (defn) é um macro. +;; As macros no Paren são fáceis. +;; Na verdade, (defn) é uma macro. (defmacro setfn (nome ...) (set nome (fn ...))) (defmacro defn (nome ...) (def nome (fn ...))) @@ -191,6 +191,6 @@ a ; => (3 2) (defmacro infix (a op ...) (op a ...)) (infix 1 + 2 (infix 3 * 4)) ; => 15 -;; Macros não são higiênicos, você pode sobrescrever as variáveis já existentes! -;; Eles são transformações de códigos. +;; Macros não são higiênicas, você pode sobrescrever as variáveis já existentes! +;; Elas são transformações de códigos. ``` |