Skip to content

Commit 7be7934

Browse files
committed
Fix code-snippet window message description
1 parent c0924e2 commit 7be7934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/snippet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function registerSnippetCommands(context: vscode.ExtensionContext) {
1515
const snippet = `> \`${vscode.workspace.asRelativePath(editor.document.uri.fsPath)}\`\n\n\`\`\`${editor.document.languageId}=${editor.selection.start.line + 1}\n${text}\n\`\`\``;
1616

1717
const noteUrl = await API.newNote(snippet);
18-
const clicked = await vscode.window.showInformationMessage('New note Established!', ...['Copy URL to clip board', 'Open in browser']);
18+
const clicked = await vscode.window.showInformationMessage('New Snippet Established!', ...['Copy URL to clip board', 'Open in browser']);
1919
if (clicked === 'Copy URL to clip board') {
2020
vscode.env.clipboard.writeText(noteUrl);
2121
} else if (clicked === 'Open in browser') {

0 commit comments

Comments
 (0)