Skip to content

Commit 203fba2

Browse files
authored
Fix indent
1 parent b5e39ca commit 203fba2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/extensibility/debugger/reference/displaykind.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ Enumerates the valid values that represent the kinds of information to take from
1919
```cpp
2020
enum enum_DisplayKind
2121
{
22-
DisplayKind_Value = 0x1,
23-
DisplayKind_Name = 0x2,
24-
DisplayKind_Type = 0x3,
22+
DisplayKind_Value = 0x1,
23+
DisplayKind_Name = 0x2,
24+
DisplayKind_Type = 0x3,
2525
};
2626
typedef DWORD DisplayKind;
2727
```
2828

2929
```csharp
3030
public enum enum_DisplayKind
3131
{
32-
DisplayKind_Value = 0x1,
33-
DisplayKind_Name = 0x2,
34-
DisplayKind_Type = 0x3,
32+
DisplayKind_Value = 0x1,
33+
DisplayKind_Name = 0x2,
34+
DisplayKind_Type = 0x3,
3535
};
3636
```
3737

0 commit comments

Comments
 (0)