Skip to content

Commit a06d5a3

Browse files
authored
Fix indent
1 parent 73269d0 commit a06d5a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/extensibility/debugger/reference/attach-reason.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ Specifies the reason for the debug engine (DE) to attach to a program node.
2020

2121
```cpp
2222
enum enum_ATTACH_REASON {
23-
ATTACH_REASON_LAUNCH = 0x0001,
24-
ATTACH_REASON_USER = 0x0002,
25-
ATTACH_REASON_AUTO = 0x0003
23+
ATTACH_REASON_LAUNCH = 0x0001,
24+
ATTACH_REASON_USER = 0x0002,
25+
ATTACH_REASON_AUTO = 0x0003
2626
};
2727
typedef DWORD ATTACH_REASON;
2828
```
2929

3030
```csharp
3131
public enum enum_ATTACH_REASON {
32-
ATTACH_REASON_LAUNCH = 0x0001,
33-
ATTACH_REASON_USER = 0x0002,
34-
ATTACH_REASON_AUTO = 0x0003
32+
ATTACH_REASON_LAUNCH = 0x0001,
33+
ATTACH_REASON_USER = 0x0002,
34+
ATTACH_REASON_AUTO = 0x0003
3535
};
3636
```
3737

0 commit comments

Comments
 (0)