diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-02 05:05:28 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 05:05:28 +0530 |
commit | e529aa6f5a0654c924215dfc815724f73f5c3c44 (patch) | |
tree | 21d0fb066f1325a13ce1f27dd3d4937d006d1e39 /pt-br/c-pt.html.markdown | |
parent | b12621f1a0f788306ef7bdf57357fdb2caa541ac (diff) | |
parent | 3f3d5763dd9da4fa6fb7a32d386dbfd707895c77 (diff) |
Merge pull request #3242 from arfurlaneto/patch-8
[c/pt-br] Small typo
Diffstat (limited to 'pt-br/c-pt.html.markdown')
-rw-r--r-- | pt-br/c-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/c-pt.html.markdown b/pt-br/c-pt.html.markdown index d594b7b9..e1c27958 100644 --- a/pt-br/c-pt.html.markdown +++ b/pt-br/c-pt.html.markdown @@ -538,7 +538,7 @@ int area(retan r) return r.largura * r.altura; } -// Se você tiver structus grande, você pode passá-las "por ponteiro" +// Se você tiver structs grandes, você pode passá-las "por ponteiro" // para evitar cópia de toda a struct: int area(const retan *r) { |