Skip to content

Commit e45c117

Browse files
authored
Address more mistakes with italic inline code
1 parent 6d9d959 commit e45c117

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/atl-mfc-shared/reference/cimage-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ static HRESULT GetImporterFilterString(
745745
A reference to a `CSimpleString` object. See **Remarks** for more information.
746746
747747
*`aguidFileTypes`*<br/>
748-
An array of GUIDs, with each element corresponding to one of the file types in the string. In the example in *`pszAllFilesDescription`* below, *`aguidFileTypes[0]*` is `GUID_NULL` with the remaining array values are the image file formats supported by the current operating system.
748+
An array of GUIDs, with each element corresponding to one of the file types in the string. In the example in *`pszAllFilesDescription`* below, *`aguidFileTypes[0]`* is `GUID_NULL` with the remaining array values are the image file formats supported by the current operating system.
749749
750750
> [!NOTE]
751751
> For a complete list of constants, see **Image File Format Constants** in the Windows SDK.

docs/build/cmake-projects-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Not everything in the cache is imported. Properties such as the generator and th
330330

331331
:::image type="content" source="media/cmake-import-wizard.png" alt-text="Screenshot of the Import C Make Project from Cache wizard. The directory path of the C Make project to import goes in the folder textbox.":::
332332

333-
When the wizard completes, you can see the new *`CMakeCache.txt`* file in **Solution Explorer** next to the root *`CMakeLists.txt*` file in your project.
333+
When the wizard completes, you can see the new *`CMakeCache.txt`* file in **Solution Explorer** next to the root *`CMakeLists.txt`* file in your project.
334334

335335
## Building CMake projects
336336

docs/mfc/reference/ccombobox-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ BOOL GetComboBoxInfo(PCOMBOBOXINFO pcbi) const;
515515

516516
### Parameters
517517

518-
*`pcbi*<br/>
518+
*`pcbi`*<br/>
519519
A pointer to the [`COMBOBOXINFO`](/windows/win32/api/winuser/ns-winuser-comboboxinfo) structure.
520520

521521
### Return Value

docs/mfc/reference/cdc-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ Nonzero if the function is successful; otherwise 0.
590590
591591
### Remarks
592592
593-
This function is similar to `CDC::Arc`, except that the current position is updated. The points ( *`x1`*, *`y1`*) and ( *`x2`*, *`y2`*) specify the bounding rectangle. An ellipse formed by the given bounding rectangle defines the curve of the arc. The arc extends counterclockwise (the default arc direction) from the point where it intersects the radial line from the center of the bounding rectangle to ( *`x3*`, *`y3`*). The arc ends where it intersects the radial line from the center of the bounding rectangle to ( *`x4`*, *`y4`*). If the starting point and ending point are the same, a complete ellipse is drawn.
593+
This function is similar to `CDC::Arc`, except that the current position is updated. The points ( *`x1`*, *`y1`*) and ( *`x2`*, *`y2`*) specify the bounding rectangle. An ellipse formed by the given bounding rectangle defines the curve of the arc. The arc extends counterclockwise (the default arc direction) from the point where it intersects the radial line from the center of the bounding rectangle to ( *`x3`*, *`y3`*). The arc ends where it intersects the radial line from the center of the bounding rectangle to ( *`x4`*, *`y4`*). If the starting point and ending point are the same, a complete ellipse is drawn.
594594
595595
A line is drawn from the current position to the starting point of the arc. If no error occurs, the current position is set to the ending point of the arc. The arc is drawn using the current pen; it isn't filled.
596596

docs/mfc/reference/cwnd-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,7 @@ Points to a [`POINT` structure](/windows/win32/api/windef/ns-windef-point) or `C
12451245
*`pSize`*<br/>
12461246
Points to a [`SIZE`](/windows/win32/api/windef/ns-windef-size) structure or `CSize` object that contains the control's size
12471247

1248-
*`pParentWnd*`<br/>
1248+
*`pParentWnd`*<br/>
12491249
Specifies the control's parent window. It must not be `NULL`.
12501250

12511251
*`nID`*<br/>
@@ -2319,7 +2319,7 @@ BOOL FlashWindowEx(
23192319

23202320
### Parameters
23212321

2322-
*`dwFlags*`<br/>
2322+
*`dwFlags`*<br/>
23232323
Specifies the flash status. For a complete list of values, see the [`FLASHWINFO`](/windows/win32/api/winuser/ns-winuser-flashwinfo) structure.
23242324

23252325
*`uCount`*<br/>
@@ -4107,7 +4107,7 @@ CWnd* GetWindow(UINT nCmd) const;
41074107

41084108
### Parameters
41094109

4110-
*`nCmd*`<br/>
4110+
*`nCmd`*<br/>
41114111
Specifies the relationship between `CWnd` and the returned window. It can take one of the following values:
41124112

41134113
- `GW_CHILD` Identifies the `CWnd` first child window.

docs/standard-library/weekday-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ constexpr weekday& operator+=(const days& d) noexcept;
238238

239239
### Parameters
240240

241-
`*d*`\
241+
*`d`*\
242242
The number of days to add.
243243

244244
### Return value
@@ -255,7 +255,7 @@ constexpr weekday& operator-=(const days& d) noexcept;
255255

256256
### Parameters
257257

258-
`*d*`\
258+
*`d`*\
259259
The number of days to subtract.
260260

261261
### Return value

0 commit comments

Comments
 (0)