Revert change accidentially include in check in

This commit is contained in:
Matt Bierner
2019-02-20 13:56:58 -08:00
parent adbae13f4e
commit fe01a19db1

View File

@@ -25,7 +25,7 @@ export default class MarkdownFoldingProvider implements vscode.FoldingRangeProvi
(isStartRegion(token.content) || isEndRegion(token.content));
const tokens = await this.enginee.parse(document);
const tokens = await this.engine.parse(document);
const regionMarkers = tokens.filter(isRegionMarker)
.map(token => ({ line: token.map[0], isStart: isStartRegion(token.content) }));