Skip to content

Commit 083d3c6

Browse files
authored
Fix indent
1 parent e93342f commit 083d3c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/debugger/debug-interface-access/idiasymbol-get-intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Retrieves a flag that specifies whether the function is an introducing virtual f
2020

2121
```C++
2222
HRESULT get_intro
23-
BOOL* pRetVal
23+
BOOL* pRetVal
2424
);
2525
```
2626

@@ -38,10 +38,10 @@ If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
3838

3939
```C++
4040
class A {
41-
virtual int f1();
41+
virtual int f1();
4242
}
4343
class B : public A {
44-
int f1();
44+
int f1();
4545
}
4646
```
4747

0 commit comments

Comments
 (0)