Skip to content

Commit 51fb154

Browse files
committed
Update WorkspaceSymbolProvider.ts
1 parent 328ccb0 commit 51fb154

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/providers/WorkspaceSymbolProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export class WorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvider {
5858
return vscode.SymbolKind.Interface;
5959
case "Class":
6060
return vscode.SymbolKind.Class;
61-
default: // Property and Relationship
61+
default:
62+
// Property and Relationship
6263
return vscode.SymbolKind.Property;
6364
}
6465
})();

0 commit comments

Comments
 (0)