From d0a14dcbcc92b43a4f0f4bccfc767931c3af565a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Tue, 19 Aug 2014 10:36:27 -0700 Subject: [PATCH] Write correct glossary to disk --- lib/generate/site/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/generate/site/index.js b/lib/generate/site/index.js index 953522cef..0bd23184f 100644 --- a/lib/generate/site/index.js +++ b/lib/generate/site/index.js @@ -258,7 +258,7 @@ Generator.prototype.writeGlossaryIndex = function() { return fs.writeFile( path.join(this.options.output, 'glossary_index.json'), - this.glossaryIndexer.dump() + JSON.stringify(this.options.glossary) ); };