Skip to content

Commit 47dc0d7

Browse files
authored
Fix indent
1 parent b544f33 commit 47dc0d7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ Specifies why the process was launched for debugging.
2020

2121
```cpp
2222
enum enum_DEBUG_REASON {
23-
DEBUG_REASON_ERROR = 0,
24-
DEBUG_REASON_USER_LAUNCHED = 1,
25-
DEBUG_REASON_USER_ATTACHED = 2,
26-
DEBUG_REASON_AUTO_ATTACHED = 3,
27-
DEBUG_REASON_CAUSALITY = 4
23+
DEBUG_REASON_ERROR = 0,
24+
DEBUG_REASON_USER_LAUNCHED = 1,
25+
DEBUG_REASON_USER_ATTACHED = 2,
26+
DEBUG_REASON_AUTO_ATTACHED = 3,
27+
DEBUG_REASON_CAUSALITY = 4
2828
};
2929
typedef DWORD DEBUG_REASON;
3030
```
3131

3232
```csharp
3333
public enum enum_DEBUG_REASON {
34-
DEBUG_REASON_ERROR = 0,
35-
DEBUG_REASON_USER_LAUNCHED = 1,
36-
DEBUG_REASON_USER_ATTACHED = 2,
37-
DEBUG_REASON_AUTO_ATTACHED = 3,
38-
DEBUG_REASON_CAUSALITY = 4
34+
DEBUG_REASON_ERROR = 0,
35+
DEBUG_REASON_USER_LAUNCHED = 1,
36+
DEBUG_REASON_USER_ATTACHED = 2,
37+
DEBUG_REASON_AUTO_ATTACHED = 3,
38+
DEBUG_REASON_CAUSALITY = 4
3939
};
4040
```
4141

0 commit comments

Comments
 (0)