mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[c++/pt-br] Fix some typos
This commit is contained in:
parent
4e118150a2
commit
c450701b46
@ -490,7 +490,7 @@ bool doSomethingWithAFile(const char* filename)
|
||||
{
|
||||
FILE* fh = fopen(filename, "r"); // Abra o arquivo em modo de leitura
|
||||
if (fh == nullptr) // O ponteiro retornado é nulo em caso de falha.
|
||||
reuturn false; // Relate o fracasso para o chamador.
|
||||
return false; // Relate o fracasso para o chamador.
|
||||
|
||||
// Suponha cada função retorne false, se falhar
|
||||
if (!doSomethingWithTheFile(fh)) {
|
||||
@ -511,7 +511,7 @@ bool doSomethingWithAFile(const char* filename)
|
||||
{
|
||||
FILE* fh = fopen(filename, "r");
|
||||
if (fh == nullptr)
|
||||
reuturn false;
|
||||
return false;
|
||||
|
||||
if (!doSomethingWithTheFile(fh))
|
||||
goto failure;
|
||||
|
Loading…
Reference in New Issue
Block a user