Fix typos in code-actions-sample

This commit is contained in:
fanich37
2020-02-19 12:18:49 +03:00
parent 59577b3341
commit 0749cbabac
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Code Action Provider Sample
This sample shows how to provide code actions in the the editor. Code actions are used to implement quick fixes and [refactoring](https://code.visualstudio.com/docs/editor/refactoring) in VS Code
This sample shows how to provide code actions in the editor. Code actions are used to implement quick fixes and [refactoring](https://code.visualstudio.com/docs/editor/refactoring) in VS Code.
The sample uses the [`CodeActionProvider`](https://code.visualstudio.com/api/references/vscode-api#CodeActionProvider) api to implement a simple set of code actions that convert `:)` to a smiley emoji in markdown files:

View File

@ -30,7 +30,7 @@ export function activate(context: vscode.ExtensionContext) {
}
/**
* Provides code actions for converting :) to an smiley emoji.
* Provides code actions for converting :) to a smiley emoji.
*/
export class Emojizer implements vscode.CodeActionProvider {