We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adbae13 commit fe01a19Copy full SHA for fe01a19
1 file changed
extensions/markdown-language-features/src/features/foldingProvider.ts
@@ -25,7 +25,7 @@ export default class MarkdownFoldingProvider implements vscode.FoldingRangeProvi
25
(isStartRegion(token.content) || isEndRegion(token.content));
26
27
28
- const tokens = await this.enginee.parse(document);
+ const tokens = await this.engine.parse(document);
29
const regionMarkers = tokens.filter(isRegionMarker)
30
.map(token => ({ line: token.map[0], isStart: isStartRegion(token.content) }));
31
0 commit comments