Skip to content

Commit fc11266

Browse files
authored
Merge pull request #5315 from Rageking8/correct-backticks-wrongly-including-surrounding-space
Correct backticks wrongly including surrounding space
2 parents 4195398 + aae6b99 commit fc11266

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

docs/build/reference/idlout-name-midl-output-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: /IDLOUT (Name MIDL Output Files)"
32
title: "/IDLOUT (Name MIDL Output Files)"
3+
description: "Learn more about: /IDLOUT (Name MIDL Output Files)"
44
ms.date: 03/27/2025
55
f1_keywords: ["/idlout", "VC.Project.VCLinkerTool.MergedIDLBaseFileName"]
66
helpviewer_keywords: ["MIDL, output file names", ".idl files, path", "MIDL", "/IDLOUT linker option", "IDL files, path", "-IDLOUT linker option", "IDLOUT linker option"]
@@ -21,7 +21,7 @@ Specifies the name of the `.idl` file created by the MIDL compiler. No file exte
2121

2222
## Remarks
2323

24-
The `/IDLOUT` option specifies the name and extension of the `.idl `file.
24+
The `/IDLOUT` option specifies the name and extension of the `.idl` file.
2525

2626
The MIDL compiler is called by the MSVC linker when linking projects that have the [`module`](../../windows/attributes/module-cpp.md) attribute.
2727

docs/build/reference/pdb-use-program-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: /PDB (Use Program Database)"
32
title: "/PDB (Use Program Database)"
3+
description: "Learn more about: /PDB (Use Program Database)"
44
ms.date: 03/24/2025
55
f1_keywords: ["/pdb", "VC.Project.VCLinkerTool.ProgramDatabaseFile"]
66
helpviewer_keywords: ["-PDB linker option", "/PDB linker option", "PDB linker option", "PDB files, creating", ".pdb files, creating"]
@@ -22,7 +22,7 @@ A user-specified name for the program database (PDB) that the linker creates. It
2222

2323
By default, when [`/DEBUG`](debug-generate-debug-info.md) is specified, the linker creates a program database (PDB) which holds debugging information. The default file name for the PDB has the base name of the program and the extension .pdb.
2424

25-
Use `/PDB:`*`filename`* to specify the name of the PDB file. If `/DEBUG `is not specified, the `/PDB` option is ignored.
25+
Use `/PDB:`*`filename`* to specify the name of the PDB file. If `/DEBUG` is not specified, the `/PDB` option is ignored.
2626

2727
A PDB file can be up to 2GB in size.
2828

docs/build/reference/winmdfile-specify-winmd-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: /WINMDFILE (Specify winmd File)"
32
title: "/WINMDFILE (Specify winmd File)"
3+
description: "Learn more about: /WINMDFILE (Specify winmd File)"
44
ms.date: 03/27/2025
55
f1_keywords: ["VC.Project.VCLinkerTool.GenerateWindowsMetadataFile"]
66
---
@@ -31,6 +31,6 @@ Use the value that is specified in `filename` to override the default `.winmd` f
3131

3232
## See also
3333

34-
[`/WINMD `(Generate Windows Metadata)](winmd-generate-windows-metadata.md)\
34+
[`/WINMD` (Generate Windows Metadata)](winmd-generate-windows-metadata.md)\
3535
[MSVC linker reference](linking.md)\
3636
[MSVC Linker Options](linker-options.md)

docs/build/understanding-manifest-generation-for-c-cpp-programs.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
description: "Learn more about: Understanding manifest generation for C/C++ programs"
32
title: "Understanding manifest generation for C/C++ programs"
3+
description: "Learn more about: Understanding manifest generation for C/C++ programs"
44
ms.date: 06/10/2022
55
helpviewer_keywords: ["manifests [C++]"]
6-
ms.assetid: a1f24221-5b09-4824-be48-92eae5644b53
76
---
87
# Understanding manifest generation for C/C++ programs
98

@@ -181,7 +180,7 @@ clean :
181180
#^^^^^^^^^^^^^^^^^^^^^^^^^ Change #4. (Add full path if necessary.)
182181
```
183182

184-
The makefiles now include two files that do the real work,*` makefile.inc`* and *`makefile.target.inc`*.
183+
The makefiles now include two files that do the real work, *`makefile.inc`* and *`makefile.target.inc`*.
185184

186185
Create *`makefile.inc`* and copy the following content into it:
187186

docs/standard-library/clock-time-conversion-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The `time_point` to convert.
101101

102102
1-3\) Identity conversions. No conversion. Returns `t` without any changes.\
103103
4\) Returns `utc_clock::to_sys(t)`.\
104-
5\) Returns` utc_clock::from_sys(t)`.
104+
5\) Returns `utc_clock::from_sys(t)`.
105105

106106
### Deduction guides
107107

0 commit comments

Comments
 (0)