Skip to content

Commit 474295d

Browse files
author
mikeblome
committed
fixed spelling error and headings
1 parent cfcc2db commit 474295d

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

docs/ide/live-share-cpp.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ In Visual Studio 2019 and Visual Studio Code, you can use **Live Share** to coll
1010

1111
![C++ Live Share Editing](../ide/media/live-share-edit-cpp.png "Live Share Editing in C++")
1212

13+
## Live Share host and guests
14+
1315
In a Live Share session there is a host and one or more guests. Both host and guests can use either Visual Studio or Visual Studio Code. A Visual Studio 2019 host on Windows can share with a Visual Studio Code guest on Linux.
1416

1517
The host provides the guests with everything they need to be productive. Guests are not required to have the source code, compiler, external dependencies, or even the same installed components.
@@ -28,6 +30,8 @@ The host and guests can use these IntelliSense features:
2830

2931
![C++ Live Share Debugging](../ide/media/live-share-debug-cpp.png "Live Share Debugging in C++")
3032

33+
## Start and end a Live Share session
34+
3135
To start a Live Share session in Visual Studio, click the Share button in the top right, or go to **File** > **Start Collaboration Session**. This generates a link that you can share with your collaborators.
3236

3337
![C++ Live Share Button](../ide/media/live-share-button-cpp.png "Live Share Button")
@@ -36,6 +40,8 @@ To end a session, select **End Collaboration Session** from the **Sharing** drop
3640

3741
![C++ Live Share Button](../ide/media/live-share-end-session-cpp.png "Live Share Button")
3842

43+
## For more information
44+
3945
For more information about **Live Share** in Visual Studio, see [What is Visual Studio Live Share?](/visualstudio/liveshare/). For more information about Live Share in Visual Studio Code, see [
4046
Live Share](https://marketplace.visualstudio.com/items?itemName=ms-vsliveshare.vsliveshare).
4147

docs/ide/navigate-code-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ You group results by the following categories:
100100
- Definition then Path
101101
- Definition, Project then Path
102102

103-
#### Filter Results
103+
#### Filter results
104104

105105
To filter results, hover over a column and click the filtering icon that pops up. You can filter results from the first column to hide things like string and comment references that you might not want to see.
106106

@@ -112,7 +112,7 @@ To filter results, hover over a column and click the filtering icon that pops up
112112

113113
- **Unprocessed Results**: **Find All References** operations can take time to complete on larger codebases, so the Results list shows "unprocessed" results here. Unprocessed results match the name of the symbol being searched for but have not yet been confirmed as actual code references. You can turn on this filter to get faster results. Just be aware that some results might not be actual references.
114114

115-
#### Sort Results
115+
#### Sort results
116116

117117
You can sort results by any column by clicking on that column. You can swap between ascending/descending order by clicking the column again.
118118

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can zoom in or out in the editor by pressing the **Ctrl** key and scrolling
4141

4242
Scrollbar **Map Mode** enables you to quickly scroll and browse through a code file without leaving your current location. You can click anywhere on the code map to go directly to that location.
4343

44-
![Code Map in C++](../ide/media/vs2015_cpp_code_map.png "Code Map")
44+
![Code Map in C++](../ide/media/vs2015-cpp-code-map.png "Code Map")
4545

4646
To turn on **Map Mode**, type “map” in the **Quick Launch** search box in the main toolbar and choose **Use scroll map mode**. For more information, see [How to: Track your code by customizing the scrollbar](/visualstudio/ide/how-to-track-your-code-by-customizing-the-scrollbar).
4747

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ A window at the bottom of the editor shows where each instantiation was found, a
8282

8383
![C++ Template IntelliSense Instantiation Map](../ide/media/template-intellisense-cpp-4.png "Template IntelliSense Instantiation Map")
8484

85-
**Template Bar** information is treated as user-specific. It is stored in the .vs folder and is not commited to source control.
85+
**Template Bar** information is treated as user-specific. It is stored in the .vs folder and is not committed to source control.
8686

8787
## Error squiggles and quick fixes
8888

@@ -98,7 +98,7 @@ The editor also offers Quick Fixes for some refactoring opportunities. For examp
9898

9999
![C++ quick fix](../ide/media/quick-fix.png "C++ Quick Fix")
100100

101-
## Change Tracking
101+
## Change tracking
102102

103103
Whenever you make a change to a file, a yellow bar appears on the left to indicate that unsaved changes were made. When you save the file, the bar turns green. The green and yellow bars are preserved as long as the document is open in the editor. They represent the changes that were made since you last opened the document.
104104

@@ -108,7 +108,7 @@ Whenever you make a change to a file, a yellow bar appears on the left to indica
108108

109109
You can move lines of code up and down by selecting them, holding down Alt, and pressing the **Up/Down** arrow keys.
110110

111-
## Insert Snippets
111+
## Insert snippets
112112

113113
A snippet is a predefined piece of source code. Right-click on a single point or on selected text to either insert a snippet or surround the selected text with the snippet. The following illustration shows the three steps to surround a selected statement with a for loop. The yellow highlights in the final image are editable fields that you access with the tab key. For more information, see [Code Snippets](/visualstudio/ide/code-snippets).
114114

@@ -138,7 +138,7 @@ Refactorings are available under the Quick Action context menu, or by clicking o
138138
* [Convert to Raw String Literal](refactoring/convert-to-raw-string-literal.md)
139139
* [Change Signature](refactoring/change-signature.md)
140140

141-
## Code Style Enforcement with ClangFormat and EditorConfig
141+
## Code style enforcement with ClangFormat and EditorConfig
142142

143143
Visual Studio 2017 and later comes with built-in support for [ClangFormat](https://clang.llvm.org/docs/ClangFormat.html), a popular code-formatting utility for C++ based on Clang/LLVM. Type "ClangFormat" into [Quick Launch](/visualstudio/ide/reference/quick-launch-environment-options-dialog-box) to set it to use one of these common formats:
144144

0 commit comments

Comments
 (0)