diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-04-10 20:50:35 -0500 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-04-10 20:50:35 -0500 |
commit | 98af70902f87c09b14d1c9b8e38c88f0a69b9d4a (patch) | |
tree | 7377b34c933c257184311d0af92476d8b8cccc26 | |
parent | 83ee903af43691e10153968d6bb240e6ebb1a837 (diff) | |
parent | 41a67b5c4cf3eb3637f0e8d5cebab6facb6de408 (diff) | |
download | gitbook-98af70902f87c09b14d1c9b8e38c88f0a69b9d4a.zip gitbook-98af70902f87c09b14d1c9b8e38c88f0a69b9d4a.tar.gz gitbook-98af70902f87c09b14d1c9b8e38c88f0a69b9d4a.tar.bz2 |
Merge pull request #701 from anthonyfok/patch-1
Fix typo in lib/book.js: lanuages → languages
-rw-r--r-- | lib/book.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/book.js b/lib/book.js index 8b0d22b..e61d771 100644 --- a/lib/book.js +++ b/lib/book.js @@ -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) { |