Skip to content

Commit 9a841ba

Browse files
committed
1769497, fixed a few more typos.
1 parent 6ca5478 commit 9a841ba

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/get-started/tutorial-console-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ It's time to add some math logic.
164164
165165
1. You'll see a green squiggle appear under `Calculate`. It's because we haven't defined the `Calculate` function in the .cpp file. Hover over the word, click the lightbulb (in this case, a screwdriver) that pops up, and choose **Create definition of 'Calculate' in Calculator.cpp**.
166166

167-
![A Screenshot of Visual Studio 2019 showing the Create definition of Calculate in Calculator C P P option highlighted.](./media/calc-vs2019-create-definition.png "Create definition of Calculate")
167+
![Screenshot of Visual Studio 2019 showing the Create definition of Calculate in Calculator C P P option highlighted.](./media/calc-vs2019-create-definition.png "Create definition of Calculate")
168168

169169
A pop-up appears that gives you a peek of the code change that was made in the other file. The code was added to *Calculator.cpp*.
170170

docs/ide/navigate-code-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ You can run a text search for anything in your solution with **Find** (**Ctrl+F*
8282

8383
You can organize **Find in Files** results in two windows. You can append results from multiple searches together. Select a result to go to that location in the file.
8484

85-
![A screenshot showing a Find in File search result.](../ide/media/vs2017-find-in-files-results.png "Find in Files")
85+
![Screenshot showing a Find in File search result.](../ide/media/vs2017-find-in-files-results.png "Find in Files")
8686

8787
For more information, see [Find in Files](/visualstudio/ide/find-in-files) in the Visual Studio documentation.
8888

docs/ide/read-and-understand-code-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Hover over any variable, function, or other symbol to get information about it,
5353

5454
::: moniker range="vs-2019"
5555

56-
![A screenshot showing the Quick Info tooltip in Visual Studio 2019.](../ide/media/quick-info-vs2019.png "Quick Info")
56+
![Screenshot showing the Quick Info tooltip in Visual Studio 2019.](../ide/media/quick-info-vs2019.png "Quick Info")
5757

5858
The **Quick Info** tooltip has a **Search Online** link. Go to **Tools** > **Options** > **Text Editor** > **C++** > **View** to specify the search provider.
5959

@@ -65,7 +65,7 @@ If there is an error in your code, you can hover over it and **Quick Info** will
6565

6666
::: moniker range="<=vs-2017"
6767

68-
![A screenshot showing the Quick Info tooltip in Visual Studio 2017.](../ide/media/quick-info.png "Quick Info")
68+
![Screenshot showing the Quick Info tooltip in Visual Studio 2017.](../ide/media/quick-info.png "Quick Info")
6969

7070
If there is an error in your code, you can hover over it and **Quick Info** will display the error message. You can also find the error message in the **Error List** window.
7171

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ For some kinds of errors, as well as common coding patterns, the editor will off
9393

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

96-
![A screenshot showing error squiggles and the quick fix that the editor offers.](../ide/media/quick-fix-for-header-cpp.png "C++ Quick Fix")
96+
![Screenshot showing error squiggles and the quick fix that the editor offers.](../ide/media/quick-fix-for-header-cpp.png "C++ Quick Fix")
9797

9898
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.
9999

100-
![A screenshot showing the quick fix with the Create definition of Channel Route Iterator in channels dot C P P option highlighted.](../ide/media/quick-fix.png "C++ Quick Fix")
100+
![Screenshot showing the quick fix with the Create definition of Channel Route Iterator in channels dot C P P option highlighted.](../ide/media/quick-fix.png "C++ Quick Fix")
101101

102102
## Change tracking
103103

docs/linux/configure-a-linux-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ To manage your header cache, navigate to **Tools > Options, Cross Platform > Con
104104

105105
::: moniker range="vs-2017"
106106

107-
![A screenshot showing the Options dialog box with Cross Platform > Connection Manager > Remote Headers IntelliSense Manager selected.](media/remote-header-intellisense.png)
107+
![Screenshot showing the Options dialog box with Cross Platform > Connection Manager > Remote Headers IntelliSense Manager selected.](media/remote-header-intellisense.png)
108108

109109
::: moniker-end
110110

111111
::: moniker range="vs-2019"
112112

113-
![A screenshot showing the Options dialog box with Cross Platform > Connection Manager selected.](media/connection-manager-vs2019.png)
113+
![Screenshot showing the Options dialog box with Cross Platform > Connection Manager selected.](media/connection-manager-vs2019.png)
114114

115115
You can enable logging to help troubleshoot problems:
116116

docs/linux/create-a-new-linux-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To create a new Linux project in Visual Studio 2017, follow these steps:
2525
1. Select **File > New Project** in Visual Studio, or press **Ctrl + Shift + N**.
2626
1. Select the **Visual C++ > Cross Platform > Linux** node, and then select the project type to create. Enter a **Name** and **Location**, and choose **OK**.
2727

28-
![A screenshot showing the New Project dialog box with Visual C plus plus > Cross Platform > Linux selected, all of the project types called out, and the Name and Location text boxes also called out.](media/newproject.png)
28+
![Screenshot showing the New Project dialog box with Visual C plus plus > Cross Platform > Linux selected, all of the project types called out, and the Name and Location text boxes also called out.](media/newproject.png)
2929

3030
| Project Type | Description |
3131
| ------------ | --- |

0 commit comments

Comments
 (0)