Skip to content

Commit c18adcd

Browse files
committed
Fixed typo in type name
1 parent 8605870 commit c18adcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/core/document-parser-tree-manager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { DocumentSymbol, SymbolKind, TextDocuments } from "vscode-languageserver
1212
import { Range, TextDocument } from "vscode-languageserver-textdocument";
1313
import Parser = require("web-tree-sitter");
1414

15-
type ApacheDispatcherConfigDocoumentSymbol = {
15+
type ApacheDispatcherConfigDocumentSymbol = {
1616
node: Parser.SyntaxNode;
1717
parentSymbols: DocumentSymbol[];
1818
}
@@ -122,15 +122,15 @@ export class DocumentParserTreeManager {
122122
}
123123

124124
const rootSymbols: DocumentSymbol[] = [];
125-
const documentSymbolsStack: ApacheDispatcherConfigDocoumentSymbol[] = [
125+
const documentSymbolsStack: ApacheDispatcherConfigDocumentSymbol[] = [
126126
{
127127
node: syntaxTree.rootNode,
128128
parentSymbols: rootSymbols
129129
}
130130
];
131131

132132
while (documentSymbolsStack.length > 0) {
133-
const documentSymbol: ApacheDispatcherConfigDocoumentSymbol | undefined = documentSymbolsStack.pop();
133+
const documentSymbol: ApacheDispatcherConfigDocumentSymbol | undefined = documentSymbolsStack.pop();
134134

135135
if (documentSymbol === undefined || documentSymbol.node === undefined) {
136136
continue;

0 commit comments

Comments
 (0)