Skip to content

Commit 9c9538b

Browse files
authored
Fix missing semicolon
1 parent aa6a7f9 commit 9c9538b

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)