Skip to content

Commit 65cb321

Browse files
TylerMSFTTylerMSFT
authored andcommitted
small edits
1 parent 5951232 commit 65cb321

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/build/reference/ifc-map.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This switch tells the compiler where to find the [TOML](https://toml.io/en/) fil
1717
1818
## Remarks
1919

20-
The *`filename`* argument specifies a TOML file (Tom's Obvious Minimal Language). The file can be relative to the working directory of the compiler or an absolute path.
20+
The *`filename`* argument specifies a TOML (Tom's Obvious Minimal Language) file. The file can be relative to the compiler's working directory, or an absolute path.
2121
Multiple `/ifcMap` arguments can be provided to the compiler.
2222

2323
The TOML file can contain a mix of `[[module]]` and `[[header-unit]]` references. Syntax errors or unrecognized table names result in compiler error `C7696` (TOML parse error).
@@ -26,7 +26,7 @@ The TOML file can contain a mix of `[[module]]` and `[[header-unit]]` references
2626

2727
The format of the TOML file must adhere to the following specification for named modules:
2828

29-
```cpp
29+
```
3030
# Using literal strings
3131
[[module]]
3232
name = 'M'
@@ -38,7 +38,7 @@ name = "N"
3838
ifc = "C:\\modules\\N.ifc"
3939
```
4040

41-
This TOML file maps the named modules 'M' and 'N' to their respective IFC files. The equivalent [`/reference'](module-reference.md) is:
41+
This TOML file maps the named modules `'M'` and `'N'` to their respective IFC files. The equivalent [`/reference'](module-reference.md) is:
4242

4343
```cmd
4444
/reference M=C:\modules\M.ifc /reference N=C:\modules\N.ifc
@@ -70,7 +70,7 @@ name = ["angle", "algorithm"]
7070
ifc = "C:\\header-units\\algorithm.ifc"
7171
```
7272

73-
When `[[header-unit]]` is specified in the TOML, the compiler implicitly enables [`/Zc:preprocessor`](zc-preprocessor.md) like how it's implicitly enabled when [`/headerUnit`](headerunit.md) is used. For more information about the behavior of the 'angle' and 'quote' lookup methods, see the [/headerUnit Remarks](headerunit.md#remarks).
73+
When `[[header-unit]]` is specified in the TOML, the compiler implicitly enables [`/Zc:preprocessor`](zc-preprocessor.md), just as it's implicitly enabled when [`/headerUnit`](headerunit.md) is used. For more information about the behavior of the 'angle' and 'quote' lookup methods, see the [/headerUnit Remarks](headerunit.md#remarks).
7474

7575
### To set this compiler option in the Visual Studio development environment
7676

0 commit comments

Comments
 (0)