1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

Merge pull request #3242 from arfurlaneto/patch-8

[c/pt-br] Small typo
This commit is contained in:
Divay Prakash
2018-10-02 05:05:28 +05:30
committed by GitHub

View File

@@ -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)
{