1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

[c/pt-br] Small typo

This commit is contained in:
Antonio Roberto Furlaneto 2018-10-01 20:10:17 -03:00 committed by GitHub
parent 82fd640dba
commit 3f3d5763dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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