Skip to content

Commit b432822

Browse files
authored
Fix indent
1 parent d166ec3 commit b432822

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/extensibility/debugger/reference/debug-custom-viewer.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ A structure that identifies a custom viewer or type visualizer.
2020

2121
```cpp
2222
typedef struct tagDEBUG_CUSTOM_VIEWER {
23-
DWORD dwID;
24-
BSTR  bstrMenuName;
25-
BSTR  bstrDescription;
26-
GUID  guidLang;
27-
GUID  guidVendor;
28-
BSTR  bstrMetric;
23+
DWORD dwID;
24+
BSTR  bstrMenuName;
25+
BSTR  bstrDescription;
26+
GUID  guidLang;
27+
GUID  guidVendor;
28+
BSTR  bstrMetric;
2929
} DEBUG_CUSTOM_VIEWER;
3030
```
3131
3232
```csharp
3333
public struct DEBUG_CUSTOM_VIEWER {
34-
public uint  dwID;
35-
public string bstrMenuName;
36-
public string bstrDescription;
37-
public Guid  guidLang;
38-
public Guid  guidVendor;
39-
public string bstrMetric;
34+
public uint  dwID;
35+
public string bstrMenuName;
36+
public string bstrDescription;
37+
public Guid  guidLang;
38+
public Guid  guidVendor;
39+
public string bstrMetric;
4040
};
4141
```
4242

0 commit comments

Comments
 (0)