Skip to content

Commit aaee92f

Browse files
TylerMSFTTylerMSFT
authored andcommitted
fix links
1 parent 49ffa0f commit aaee92f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

docs/ide/lnt-naming-convention.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cpp_naming_style.boolean_style.capitalization = pascal_case
2323
cpp_naming_style.boolean_style.required_prefix = b
2424
```
2525

26-
The linter will flag the following code because it isn't prefixed with 'b' and because it isn't Pascal case, as specified in the `.editorconfig` file:
26+
The linter flags the following code because it isn't prefixed with 'b' and because it isn't Pascal case, as specified in the `.editorconfig` file:
2727

2828
```cpp
2929
void example()
@@ -45,7 +45,7 @@ void example()
4545

4646
The editor can make the change for you. Place the cursor on the flagged symbol. Choose **Show potential fixes** and then **Apply naming convention**:
4747

48-
:::image type="complex" source="media/lnt-naming-convention-apply-naming-convention.png" alt-text="Screenshot of the IDE suggesting applying naming convention.":::
48+
:::image type="complex" source="media/lnt-apply-naming-convention.png" alt-text="Screenshot of the IDE suggesting applying naming convention.":::
4949
The code editor shows bool myFlag = true. With the cursor on that line of code, **Show potential fixes** appeared and was chosen. Now **Apply naming convention** is visible and it shows bool my Flag = true in red and the suggested change, bool b My Flag, in green. You can now choose **Apply naming convention** to change the flagged code to bool b My Flag = true.
5050
:::image-end:::
5151

0 commit comments

Comments
 (0)