Skip to content

Commit a4105fd

Browse files
TylerMSFTTylerMSFT
authored andcommitted
Merge branch 'ifcmap' of https://github.com/TylerMSFT/cpp-docs-pr into ifcmap
2 parents 5862d90 + 80e3419 commit a4105fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/modules-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The `import` declaration can appear only at global scope.
111111

112112
A *module interface* exports the module name and all the namespaces, types, functions, and so on that make up the public interface of the module. A *module implementation* defines the things exported by the module. In its simplest form, a module can consist of a single file that combines the module interface and implementation. You can also put the implementations in one or more separate module implementation files, similar to how *`.h`* and *`.cpp`* files are used.
113113

114-
For larger modules, you can split parts of the module into submodules called *partitions*. Each partition consists of a module interface file that exports a module partition name. A partition may also have one or more partition implementation files. The module as a whole has one *primary module interface*, the public interface of the module that may also import and export the partition interfaces.
114+
For larger modules, you can split parts of the module into submodules called *partitions*. Each partition consists of a module interface file that exports a module partition name. A partition might also have one or more partition implementation files. The module as a whole has one *primary module interface*, the public interface of the module that might also import and export the partition interfaces.
115115

116116
A module consists of one or more *module units*. A module unit is a translation unit (a source file) that contains a module declaration. There are several types of module units:
117117

@@ -203,4 +203,4 @@ import "myheader.h";
203203

204204
[`module`, `import`, `export`](import-export-module.md)\
205205
[Named modules tutorial](tutorial-named-modules-cpp.md)\
206-
[Compare header units, modules, and precompiled headers](../build/compare-inclusion-methods.md)
206+
[Compare header units, modules, and precompiled headers](../build/compare-inclusion-methods.md)

0 commit comments

Comments
 (0)