Skip to content

Commit ee5385b

Browse files
authored
Merge pull request MicrosoftDocs#4190 from chausner/patch-1
Fix missing semicolon
2 parents 0b3e48e + 9c9538b commit ee5385b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/tutorial-named-modules-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Module implementation unit files have a *`.cpp`* extension. The basic outline of
304304
// optional #include or import statements. These only apply to this file
305305
// imports in the associated module's interface are automatically available to this file
306306

307-
module [module-name] // required. Identifies which named module this implementation unit belongs to
307+
module [module-name]; // required. Identifies which named module this implementation unit belongs to
308308

309309
// implementation
310310
```

0 commit comments

Comments
 (0)