Skip to content

Commit 12dc13e

Browse files
author
Colin Robertson
authored
Merge pull request #3559 from roxk/patch-2
Fix incorrect import example
2 parents 7a7aecc + a160b7b commit 12dc13e

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)