Fix typo in lib/book.js: lanuages → languages

This commit is contained in:
Anthony Fok
2015-04-10 07:41:12 -06:00
parent 83ee903af4
commit 41a67b5c4c
+1 -1
View File
@@ -115,7 +115,7 @@ Book.prototype.parse = function() {
return that.parseLangs()
.then(function() {
multilingual = that.langs.length > 0;
if (multilingual) that.log.info.ln("Parsing multilingual book, with", that.langs.length, "lanuages");
if (multilingual) that.log.info.ln("Parsing multilingual book, with", that.langs.length, "languages");
// Sub-books that inherit from the current book configuration
that.books = _.map(that.langs, function(lang) {