diff options
Diffstat (limited to 'packages/gitbook/src/output/index.js')
-rw-r--r-- | packages/gitbook/src/output/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gitbook/src/output/index.js b/packages/gitbook/src/output/index.js index 574b3df..6ef3b85 100644 --- a/packages/gitbook/src/output/index.js +++ b/packages/gitbook/src/output/index.js @@ -13,7 +13,7 @@ const generators = Immutable.List([ @return {Generator} */ function getGenerator(name) { - return generators.find(function(generator) { + return generators.find((generator) => { return generator.name == name; }); } |