Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Litvinov committed Jul 19, 2024
1 parent 5d21bea commit f16f9b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/30-variables/10-definition/ru/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ int main() {
```cpp
int main() {
string acc = "";
acc += "Hello, ";
acc += "World";
acc = acc + "Hello, ";
acc = acc + "World!";
std::cout << acc;
}
```
Expand Down

0 comments on commit f16f9b5

Please sign in to comment.