Skip to content

Commit f16f9b5

Browse files
author
Maksim Litvinov
committed
fix typo
1 parent 5d21bea commit f16f9b5

File tree

1 file changed

+2
-2
lines changed
  • modules/30-variables/10-definition/ru

1 file changed

+2
-2
lines changed

modules/30-variables/10-definition/ru/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ int main() {
6161
```cpp
6262
int main() {
6363
string acc = "";
64-
acc += "Hello, ";
65-
acc += "World";
64+
acc = acc + "Hello, ";
65+
acc = acc + "World!";
6666
std::cout << acc;
6767
}
6868
```

0 commit comments

Comments
 (0)