Skip to content

Commit 42700e8

Browse files
authored
Merge pull request #5349 from Rageking8/remove-stray-semicolons-after-include-directive
Remove stray semicolons after `#include` directive
2 parents 777a766 + 412da3c commit 42700e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/build/walkthrough-import-stl-header-units.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ Follow these steps to create a project that includes two STL libraries: `<iostre
182182
1. Replace the contents of the source file as follows:
183183
184184
```cpp
185-
#include <iostream>;
186-
#include <vector>;
185+
#include <iostream>
186+
#include <vector>
187187
188188
int main()
189189
{

0 commit comments

Comments
 (0)