diff options
author | Flavio <77132531+flavin27@users.noreply.github.com> | 2024-02-14 10:22:59 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 14:22:59 +0100 |
commit | 60e5d32ff9dbfe7695dce05a0034ee662e467776 (patch) | |
tree | 92833ef00ea1fa313ed8fe23b90d28983ae5e361 /pt-br | |
parent | 224e01864a73eb306f23a18f32490c1dd51addee (diff) |
[c/pt-br] fix untranslated english section (#4842)
* fix: unstranslated section
* fix: miss clicked
---------
Co-authored-by: Flavio <77132531+flaviodev27@users.noreply.github.com>
Diffstat (limited to 'pt-br')
-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 7d8b75f1..ca289001 100644 --- a/pt-br/c++-pt.html.markdown +++ b/pt-br/c++-pt.html.markdown @@ -363,7 +363,7 @@ void OwnedDog::print() const { Dog::print(); // Chame a função de impressão na classe Dog base de std::cout << "Dog is owned by " << owner << "\n"; - // Prints "Dog is <name> and weights <weight>" + // Imprime "Dog is <name> and weights <weight>" // "Dog is owned by <owner>" } |