Skip to content

Commit

Permalink
Fix typos in code-actions-sample
Browse files Browse the repository at this point in the history
  • Loading branch information
fanich37 committed Feb 19, 2020
1 parent 59577b3 commit 0749cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code-actions-sample/README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
2 changes: 1 addition & 1 deletion code-actions-sample/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit 0749cba

Please sign in to comment.