Skip to content

Commit 7767644

Browse files
committed
fix(npm): fix reference of helper
1 parent 8e265e7 commit 7767644

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textlint-rule-rousseau.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// LICENSE : MIT
22
"use strict";
3-
import {RuleHelper, IgnoreNodeManger} from "textlint-rule-helper";
3+
import {RuleHelper, IgnoreNodeManager} from "textlint-rule-helper";
44
const StringSource = require("textlint-util-to-string").default;
55
const rousseau = require("rousseau");
66
const map = require("unist-util-map");
@@ -28,7 +28,7 @@ const mapNode = function (ast, mapFn) {
2828

2929
export default function textlintRousseau(context, options = defaultOptions) {
3030
const helper = new RuleHelper(context);
31-
const ignoreNodeManager = new IgnoreNodeManger();
31+
const ignoreNodeManager = new IgnoreNodeManager();
3232
const {Syntax, RuleError, report, getSource} = context;
3333
const showLevels = options.showLevels || defaultOptions.showLevels;
3434
const ignoreTypes = options.ignoreTypes || defaultOptions.ignoreTypes;

0 commit comments

Comments
 (0)