Skip to content

Commit a3552bb

Browse files
TylerMSFTTylerMSFT
authored andcommitted
acrolinx
1 parent b4057c0 commit a3552bb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/ide/navigate-code-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You can open **Go To** with **Ctrl+,**. This action creates a search box over th
4747
- Properties and events.
4848
- **Go To Symbol** (**Ctrl 1, S**): Search results include:
4949
- Results from Go To Types and Go To Members.
50-
- All remaining C++ language constructs, which includes macros.
50+
- All remaining C++ language constructs, which include macros.
5151

5252
When you first invoke **Go To** with **Ctrl +**, **Go To All** is activated (no filters on search results). You then can select the filter you want by using the buttons near the search box. You can invoke a specific filter using its corresponding keyboard shortcut. Doing so opens the **Go To** search box with that filter preselected. All keyboard shortcuts are configurable.
5353

docs/ide/refactoring/change-signature.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.date: "09/18/2022"
1919

2020
1. Next, do one of the following:
2121
* **Keyboard**
22-
* Press **Ctrl+R**, then **Ctrl+O**. (Your keyboard shortcut may be different based on which profile you've selected.)
22+
* Press **Ctrl+R**, then **Ctrl+O**. (Your keyboard shortcut may be different depending on which profile you've selected.)
2323
* Press **Ctrl+.** to trigger the **Quick Actions and Refactorings** menu and select **Change Signature** from the context menu.
2424
* **Mouse**
2525
* Select **Edit > Refactor > Reorder Parameters**.
@@ -41,7 +41,7 @@ ms.date: "09/18/2022"
4141
> [!TIP]
4242
> Use the **Skip preview reference changes if all references are confirmed** checkbox to make the changes immediately without the preview window popping up first.
4343
44-
When adding or modifying a parameter, you will see the **Add Parameter** or **Edit Parameter** window.
44+
When adding or modifying a parameter, you'll see the **Add Parameter** or **Edit Parameter** window.
4545

4646
![Screenshot of the Add parameter window where you can edit or set a parameter's type, name, and whether its default or optional.](images/changesignature_addmodify.png)
4747

@@ -51,7 +51,7 @@ ms.date: "09/18/2022"
5151
| ----- | ---
5252
| **Type** | The type of the parameter (int, double, float, etc.)
5353
| **Name** | The name of the parameter
54-
| **Optional Parameter** | Makes the parameter optionally specified
54+
| **Optional Parameter** | Make the parameter optionally specified
5555
| **Injected Value** | The value inserted into any calls to the function where the parameter isn't specified (only valid for **Add**)
5656
| **Default value** | The value used by the function if the caller doesn't specify one (only valid for **Optional Parameters**)
5757

docs/ide/writing-and-refactoring-code-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ For some kinds of errors, and common coding patterns, the editor will offer a **
9191

9292
In the following example, a `vector` was declared but no definition was found, so the editor offers to include the necessary header file:
9393

94-
![Screenshot showing an error squiggle and the quick fix that the editor offers. The quick fix proposed for vector<int> v is # include < vector >.](../ide/media/quick-fix-for-header-cpp.png "C++ Quick Fix")
94+
![Screenshot of an error and the proposed quick fix to # include vector.](../ide/media/quick-fix-for-header-cpp.png "C++ Quick Fix")
9595

9696
The editor also offers Quick Fixes for some refactoring opportunities. For example, if you declare a class in a header file, Visual Studio will offer to create a definition for it in a separate .cpp file.
9797

0 commit comments

Comments
 (0)