diff options
author | Felipe Pontes <felipemfpontes@gmail.com> | 2016-06-04 10:02:37 -0300 |
---|---|---|
committer | Felipe Pontes <felipemfpontes@gmail.com> | 2016-06-04 10:02:37 -0300 |
commit | c450701b46fdbed9f51d2776cab2462021c13d87 (patch) | |
tree | 2986c99dd707906cda28c8ff49cab17c7d39c66b /pt-br | |
parent | 4e118150a2ba76129389d6f57ff86f942fc50863 (diff) |
[c++/pt-br] Fix some typos
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/c++-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/c++-pt.html.markdown b/pt-br/c++-pt.html.markdown index 31a3110c..e2e95268 100644 --- a/pt-br/c++-pt.html.markdown +++ b/pt-br/c++-pt.html.markdown @@ -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; |