Skip to content

Commit b71a5fe

Browse files
authored
Update Overview.md
typo/format updates
1 parent 48c299d commit b71a5fe

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Docs/Introduction/VsActions/Overview.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Actions are a series of API calls that perform IDE specific functionality. CodeF
33

44
## Visual Studio Actions
55
The core actions within CodeFactory today directly interop with Visual Studio itself. Visual Studio actions are accessible at two different levels within the SDK. CodeFactory data models have direct links to Visual Studio actions that directly impact the target data model. At the command level there is direct access to all Visual Studio actions by calling the property VisualStudioActions.
6-
The following provides a high level summary of the actions that are avaliable at diffrent levels of the CodeFactory platform.
6+
The following provides a high level summary of the actions that are avaliable at different levels of the CodeFactory platform:
77

88
### Project System Actions
9-
The following are the target actions that are avaliable at the project system level of Visual Studio.
9+
The following are the target actions that are available at the project system level of Visual Studio.
1010

1111
#### Solution Actions
1212
These actions are directly executed at the solution level.
@@ -21,20 +21,20 @@ These actions are directly executed at the solution folder level.
2121
- AddDocumentAsync - Creates a new document data model and assigns it to the solution folder
2222
- AddExitingDocumentAsync - Adds an existing document to the target solution folder
2323
- AddSolutionFolder - Adds a solution folder under the current solution folder
24-
- GetChildrenAsync - Gets all Visul Studio models that are children of this solution folder
24+
- GetChildrenAsync - Gets all Visual Studio models that are children of this solution folder
2525
- GetParentAsync - Gets the parent Visual Studio model for this solution folder
2626
- Remove - Removes the solution folder from the solution
2727

2828
#### Project Actions
2929
These actions are directly executed at the project level.
3030

3131
- AddDocumentAsync - Creates a new document and assigns it to the root of the project
32-
- AddExistingDocumentAsync - Adds an executing document to the root of the project
32+
- AddExistingDocumentAsync - Adds an existing document to the root of the project
3333
- AddProjectFolderAsync - Creates a new project folder under the root of the project
3434
- GetChildrenAsync - Gets the Visual Studio models that are children of the project
3535
- GetParentAsync - Gets the Visual Studio model that is the parent to this project
3636
- GetReferencedProjects - Gets the project data models that are referenced by this project
37-
- GetReferencesAsync - Genereates the full list of Project Reference data models that support this project
37+
- GetReferencesAsync - Generates the full list of Project Reference data models that support this project
3838

3939
#### Project Reference Actions
4040
These actions are directly executed at the project reference level.
@@ -54,7 +54,7 @@ These actions are directly executed at the project folder level.
5454
- RemoveAsync - Removes the project folder from the project but does not remove it from the file system
5555

5656
#### Document Actions
57-
These actions are directly exected at the document level.
57+
These actions are directly executed at the document level.
5858

5959
- AddContentAsync - Adds content to a document starting at a target line number and character position
6060
- AddContentToBeginningAsync - Adds content at the beginning of the document
@@ -70,12 +70,12 @@ These actions are directly exected at the document level.
7070

7171
#### Source Actions
7272
These actions are directly executed at the C# document level
73-
- LoadDocumentFromSourceAsync - Loads a document model from the c# source document
73+
- LoadDocumentFromSourceAsync - Loads a document model from the C# source document
7474

75-
#### User model Actions
75+
#### User Model Actions
7676
These actions are directly related to creating and executed customer user models that are hosted in Visual Studio.
7777

78-
- CreateVsUserControlAsync - Generic method that creates a new instance of a visual studio user control
78+
- CreateVsUserControlAsync - Generic method that creates a new instance of a Visual Studio user control
7979
- ShowDialogWindowAsync - Displays the target user control in the Visual Studio IDE
8080

8181
## C# Actions
@@ -120,7 +120,7 @@ The following actions occur at the structure model level.
120120
- DeleteAsync - Delete the model definition
121121
- GetBodySourceLocationAsync - Get the document coordinates where the body starts and ends
122122
- GetBodySyntaxAsync - Get the raw syntax within the body
123-
- GetSourceLocationAsync - Get the full model definitions document coordiants where it starts and ends
123+
- GetSourceLocationAsync - Get the full model definitions document coordinates where it starts and ends
124124
- ReplaceAsync - Replaces the entire definition of the model with the provided syntax
125125

126126
### Member Actions
@@ -172,7 +172,7 @@ The following are other C# models that also have direct actions.
172172
The following actions apply to the using statement model level.
173173

174174
- AddAfterAsync - Adds the syntax after the model definition
175-
- AddBeforeAsync - Adds the syntax before the model defintion
175+
- AddBeforeAsync - Adds the syntax before the model definition
176176
- DeleteAsync - Deletes the model
177177
- GetSourceLocationAsync - Gets the document coordinates where the model starts and ends
178178
- ReplaceAsync - Replaces the model with the provided syntax

0 commit comments

Comments
 (0)