Skip to content

Commit 452b110

Browse files
committed
fix: update
1 parent ae6c8f2 commit 452b110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/copilot/copilotHelper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export namespace CopilotHelper {
282282
): Promise<IResolveResult> {
283283
const items: any[] = [];
284284

285-
// Check if workspace folders exist
285+
// Check if active editor exists
286286
if (!activeEditor) {
287287
return { items: [], emptyReason: EmptyReason.NoActiveEditor, itemCount: 0 };
288288
}
@@ -302,7 +302,7 @@ export namespace CopilotHelper {
302302
return { items: [], emptyReason: projectDependenciesResult.emptyReason, itemCount: 0 };
303303
}
304304

305-
// Check for cancellation after telemetry
305+
// Check for cancellation after dependency resolution
306306
checkCancellation(copilotCancel);
307307

308308
// Convert project dependencies to context items

0 commit comments

Comments
 (0)