Skip to content

Commit 847b536

Browse files
authored
book: add a line break for code formatting (changkun#224)
1 parent 7e6ada9 commit 847b536

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/en-us/02-usability.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ int main() {
299299
MagicFoo magicFoo = {1, 2, 3, 4, 5};
300300

301301
std::cout << "magicFoo: ";
302-
for (std::vector<int>::iterator it = magicFoo.vec.begin(); it != magicFoo.vec.end(); ++it) std::cout << *it << std::endl;
302+
for (std::vector<int>::iterator it = magicFoo.vec.begin(); it != magicFoo.vec.end(); ++it)
303+
std::cout << *it << std::endl;
303304
}
304305
```
305306

0 commit comments

Comments
 (0)