Skip to content

Commit 50c6ab7

Browse files
committed
Comment on the key of suggestedFixes
This isn't immediately obvious without looking at the users of the map
1 parent abc0784 commit 50c6ab7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

editors/code/src/utils/diagnostics/SuggestedFixCollection.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export default class SuggestedFixCollection
1111
implements vscode.CodeActionProvider {
1212
public static PROVIDED_CODE_ACTION_KINDS = [vscode.CodeActionKind.QuickFix];
1313

14+
/**
15+
* Map of document URI strings to suggested fixes
16+
*/
1417
private suggestedFixes: Map<string, SuggestedFix[]>;
1518

1619
constructor() {

0 commit comments

Comments
 (0)