Skip to content

Commit a160b7b

Browse files
authored
Fix incorrect import example
1 parent 7c70a63 commit a160b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/import-export-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Non-exported names are not visible to code that imports the module:
4545
```cpp
4646
//MyProgram.cpp
4747

48-
import module ModuleA;
48+
import ModuleA;
4949

5050
int main() {
5151
Bar::f(); // OK

0 commit comments

Comments
 (0)