Skip to content

Commit 9921ac0

Browse files
author
mtx48109
committed
windows formatting review pr34
1 parent b354b6f commit 9921ac0

40 files changed

+64
-68
lines changed

docs/windows/isbaseofstrict-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Supports the WRL infrastructure and is not intended to be used directly from you
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
template <
2222
typename Base,
2323
typename Derived

docs/windows/isbaseofstrict-value-constant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Supports the WRL infrastructure and is not intended to be used directly from you
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
static const bool value = __is_base_of(Base, Derived);
2222
```
2323

2424
## Remarks
2525
Indicates whether one type is the base of another.
2626

27-
`value` is **true** if type `Base` is a base class of the type `Derived`, otherwise it is **false**.
27+
**value** is **true** if type `Base` is a base class of the type `Derived`, otherwise it is **false**.
2828

2929
## Requirements
3030
**Header:** internal.h

docs/windows/issame-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Supports the WRL infrastructure and is not intended to be used directly from you
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
template <
2222
typename T1,
2323
typename T2

docs/windows/issame-value-constant.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Supports the WRL infrastructure and is not intended to be used directly from you
1717

1818
## Syntax
1919

20-
```
21-
template <typename T1, typename T2>
20+
```cpp
21+
template <typename T1, typename T2>
2222
struct IsSame
2323
{
2424
static const bool value = false;
@@ -34,7 +34,7 @@ struct IsSame<T1, T1>
3434
## Remarks
3535
Indicates whether one type is the same as another.
3636
37-
`value` is **true** if the template parameters are the same, and **false** if the template parameters are different.
37+
**value** is **true** if the template parameters are the same, and **false** if the template parameters are different.
3838
3939
## Requirements
4040
**Header:** internal.h

docs/windows/last-is.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Specifies the index of the last array element to be transmitted.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
[ last_is(
2222
"expression"
2323
) ]

docs/windows/lcid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Lets you pass a locale identifier to a function.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
[lcid]
2222
```
2323

docs/windows/length-is.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Specifies the number of array elements to be transmitted.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
[ length_is(
2222
"expression"
2323
) ]

docs/windows/library-block.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Places a construct inside the IDL library block.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
[library_block]
2222
```
2323

docs/windows/licensed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Indicates that the COM object to which it applies is licensed, and must be insta
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
[licensed]
2222
```
2323

docs/windows/load-palette-colors-dialog-box-image-editor-for-icons.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ ms.workload: ["cplusplus", "uwp"]
1515
# Load Palette Colors Dialog Box (Image Editor for Icons)
1616
Use this dialog box to load special color palettes to use in your project. For more information, see [Saving and Loading Different Color Palettes](../windows/saving-and-loading-different-color-palettes-image-editor-for-icons.md).
1717

18-
**Look in**
18+
### Look in
1919
Specifies the location where you want to locate a file or folder. Click the arrow to select another location, or click the folder icon on the toolbar to move up levels.
2020

21-
**File name**
21+
### File name
2222
Provides a space for you to type the name of the file you want to open. To quickly find a file you've previously opened, click the file name in the drop-down list, if available.
2323

2424
If you are searching for a file, you can use asterisks (*) as wildcards. For example, you can type \*.\* to see a list of all files. You can also type the full path of a file, for example, C:\My Documents\MyColorPalette.pal or \\\NetworkServer\MyFolder\MyColorPalette.pal.
2525

26-
**Files of type**
26+
### Files of type
2727
Lists the types of files to display. Palette (*.pal) is the default file type for color palettes.
2828

2929
## Requirements

0 commit comments

Comments
 (0)