Skip to content

Commit 607af7c

Browse files
authored
Merge pull request #129 from TrisodiumDev/patch-1
Fix: end of line
2 parents eed1e86 + a916f11 commit 607af7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/20-arithmetics/10-basics/ru/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ int main() {
3434

3535
```cpp
3636
int main() {
37-
std::cout << 8 / 2;
38-
std::cout << 3 * 3 * 3;
37+
std::cout << 8 / 2 << std::endl;
38+
std::cout << 3 * 3 * 3 << std::endl;
3939
}
4040
```
4141

0 commit comments

Comments
 (0)