Skip to content

Commit e2d918e

Browse files
committed
acrolinx
1 parent 9e05317 commit e2d918e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/build/reference/sourcedependencies-directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ helpviewer_keywords: ["/sourceDependencies:directives compiler option", "/source
99
---
1010
# `/sourceDependencies:directives` (List module and header unit dependencies)
1111

12-
This command-line option scans source files and their `#include` statements to generate a JSON file that lists module export and imports. This information can be used by a build system to determine the build order of modules and header units.
12+
This command-line option scans source files and their `#include` statements to generate a JSON file that lists module export and imports. A build system can use this information to determine the build order of modules and header units.
1313

1414
This option differs from [`/sourceDependencies`](sourcedependencies.md) in the following ways:
1515

@@ -99,7 +99,7 @@ No *`.ifc`* files are listed in the output because they weren't built. Unlike `/
9999

100100
## To set this compiler option in Visual Studio
101101

102-
You normally shouldn't set this option yourself in the Visual Studio development environment. It's set by the build system.
102+
You normally shouldn't set this option yourself in the Visual Studio development environment. The build system sets it.
103103

104104
## See also
105105

docs/cpp/modules-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The **`export`** keyword is only used in interface files. An implementation file
106106

107107
The rules for namespaces in modules are the same as any other code. If a declaration within a namespace is exported, the enclosing namespace (excluding members that aren't explicitly exported in that namespace) is also implicitly exported. If a namespace is explicitly exported, all declarations within that namespace definition are exported.
108108

109-
When the compiler does argument-dependent lookup for overload resolutions in the importing translation unit, it considers functions declared in the same translation unit (including module interfaces) as where the type of the function's arguments are defined.
109+
When the compiler does argument-dependent lookup for overload resolution in the importing translation unit, it considers functions declared in the same translation unit (including module interfaces) as where the type of the function's arguments is defined.
110110

111111
### Module partitions
112112

0 commit comments

Comments
 (0)