Skip to content

Commit 412da3c

Browse files
authored
Remove stray semicolons after #include directive
1 parent 6999af4 commit 412da3c

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)