Skip to content

Commit c2eb8ab

Browse files
committed
update code comments
1 parent b231693 commit c2eb8ab

File tree

1 file changed

+2
-2
lines changed
  • src/vs/workbench/contrib/chat/browser/promptSyntax/contributions/createPromptCommand/utils

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/chat/browser/promptSyntax/contributions/createPromptCommand/utils/createPromptFile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ export const createPromptFile = async (
6060
if (await fileService.exists(promptUri)) {
6161
const promptInfo = await fileService.resolve(promptUri);
6262

63-
// if existing entity is a folder, throw an error
63+
// if existing object is a folder, throw an error
6464
assert(
6565
!promptInfo.isDirectory,
6666
new FolderExists(promptUri.fsPath),
6767
);
6868

69-
// if prompt file already exists - open it
69+
// prompt file already exists so open it
7070
await commandService.executeCommand('vscode.open', promptUri);
7171

7272
return promptUri;

0 commit comments

Comments
 (0)