diff --git a/configuration-sample/README.md b/configuration-sample/README.md
index e91144f1..d5bd2ee4 100644
--- a/configuration-sample/README.md
+++ b/configuration-sample/README.md
@@ -33,7 +33,7 @@ Explains how to test this extension in an Empty workspace
- Open a different file. No message is shown.
- Run the command `Configure empty last line for current file`
- Value in User settings is updated. Message is shown now
-- Run the command `Configure empty last line for files` and provide abosoulte path of another file
+- Run the command `Configure empty last line for files` and provide absolute path of another file
- Value should be updated in User Settings
### Testing Language Specific configuration
@@ -66,7 +66,7 @@ Explains how to test this extension in a Folder workspace
- Open a different file from the opened folder. No message is shown.
- Run the command `Configure empty last line for current file`
- Value in Workspace settings is updated. Message is shown now.
-- Run the command `Configure empty last line for files` and provide abosoulte path of another file.
+- Run the command `Configure empty last line for files` and provide absolute path of another file.
- Pick the target `User Settings` or `Workspace Settings` into which the value should be updated
- Value should be updated in selected target
@@ -101,7 +101,7 @@ Explains how to test this extension in a Multiroot workspace
- Open a different file from one of the root folders. No message is shown.
- Run the command `Configure empty last line for current file`
- Value in Folder Settings of the root folder of the current file is updated. Message is shown now.
-- Run the command `Configure empty last line for files` and provide abosoulte path of another file.
+- Run the command `Configure empty last line for files` and provide absolute path of another file.
- Pick the target `User Settings` or `Workspace Settings` or `Workspace Folder Settings` into which the value should be updated
- Selecting User or Workspace Settings should update the value in respective targets.
- Selecting Workspace Folder Settings will show a Workspace Folder Picker
diff --git a/language-configuration-sample/README.md b/language-configuration-sample/README.md
index 76e78f66..2242f31c 100644
--- a/language-configuration-sample/README.md
+++ b/language-configuration-sample/README.md
@@ -5,7 +5,7 @@ This is the source code for the [Language Configuration Guide](https://code.visu
- Comment toggling
- Brackets definition
- Autoclosing
-- Autosurronding
+- Autosurrounding
- Folding
- Word pattern
- Indentation Rules
@@ -18,4 +18,4 @@ This is the source code for the [Language Configuration Guide](https://code.visu
## Running the Sample
-- Run the `Run Extension` target in the Debug View
\ No newline at end of file
+- Run the `Run Extension` target in the Debug View
diff --git a/lsp-embedded-language-service/README.md b/lsp-embedded-language-service/README.md
index c988d5b1..9b1bd257 100644
--- a/lsp-embedded-language-service/README.md
+++ b/lsp-embedded-language-service/README.md
@@ -6,7 +6,7 @@ Heavily documented sample code for https://code.visualstudio.com/api/language-ex
This extension contributes a new language, `html1`. The new language is for illustration purpose and has basic syntax highlighting.
-This Language Server works for `html1` file. HTML1 is like HTML file but has file extension `.html1`. You can create a `test.html1` file to play with below functionaltiies:
+This Language Server works for `html1` file. HTML1 is like HTML file but has file extension `.html1`. You can create a `test.html1` file to play with below functionalities:
- Completions for HTML tags
- Completions for CSS in `` to try CSS completino
+ - Type `` to try CSS completion
- Have `` to see CSS Diagnostics
diff --git a/lsp-embedded-request-forwarding/README.md b/lsp-embedded-request-forwarding/README.md
index 195269fd..143bd0e7 100644
--- a/lsp-embedded-request-forwarding/README.md
+++ b/lsp-embedded-request-forwarding/README.md
@@ -6,7 +6,7 @@ Heavily documented sample code for https://code.visualstudio.com/api/language-ex
This extension contributes a new language, `html1`. The new language is for illustration purpose and has basic syntax highlighting.
-This Language Server works for `html1` file. HTML1 is like HTML file but has file extension `.html1`. You can create a `test.html1` file to play with below functionaltiies:
+This Language Server works for `html1` file. HTML1 is like HTML file but has file extension `.html1`. You can create a `test.html1` file to play with below functionalities:
- Completions for HTML
- Completions for CSS in `` to try CSS completino
\ No newline at end of file
+ - Type `` to try CSS completion
diff --git a/lsp-multi-server-sample/README.md b/lsp-multi-server-sample/README.md
index 1ddbb008..566ce058 100644
--- a/lsp-multi-server-sample/README.md
+++ b/lsp-multi-server-sample/README.md
@@ -11,5 +11,5 @@ The example uses proposed Language Server protocol. So the code demoed here migh
- Press Ctrl+Shift+B to compile the client and server
- Switch to the Debug viewlet
- Select `Launch Client` from the drop down
-- Run the lauch config
-- If you want to debug the server as well use the launch configuration `Attach to Server`
\ No newline at end of file
+- Run the launch config
+- If you want to debug the server as well use the launch configuration `Attach to Server`
diff --git a/task-provider-sample/README.md b/task-provider-sample/README.md
index e92ec2c7..5e44c16c 100644
--- a/task-provider-sample/README.md
+++ b/task-provider-sample/README.md
@@ -10,7 +10,7 @@ This is the source code for the [Task Provider Guide](https://code.visualstudio.
### Contribution Points
-- [`contributes.taskdefinitions`](https://code.visualstudio.com/api/references/contribution-points#contributes.taskDefinitions)
+- [`contributes.taskDefinitions`](https://code.visualstudio.com/api/references/contribution-points#contributes.taskDefinitions)
## Running the example
@@ -18,4 +18,4 @@ This is the source code for the [Task Provider Guide](https://code.visualstudio.
- Open this example in VS Code
- `npm install`
- `npm run compile`
-- `F5` to start debugging
\ No newline at end of file
+- `F5` to start debugging
diff --git a/task-provider-sample/src/customTaskProvider.ts b/task-provider-sample/src/customTaskProvider.ts
index 4da237d6..6ee23a2f 100644
--- a/task-provider-sample/src/customTaskProvider.ts
+++ b/task-provider-sample/src/customTaskProvider.ts
@@ -21,7 +21,7 @@ export class CustomBuildTaskProvider implements vscode.TaskProvider {
static CustomBuildScriptType = 'custombuildscript';
private tasks: vscode.Task[] | undefined;
- // We use a CustomExecution task when state needs to be shared accross runs of the task or when
+ // We use a CustomExecution task when state needs to be shared across runs of the task or when
// the task requires use of some VS Code API to run.
// If you don't need to share state between runs and if you don't need to execute VS Code API in your task,
// then a simple ShellExecution or ProcessExecution should be enough.
@@ -132,4 +132,4 @@ class CustomBuildTaskTerminal implements vscode.Pseudoterminal {
}, isIncremental ? 1000 : 4000);
});
}
-}
\ No newline at end of file
+}