diff options
author | Anthony Fok <foka@debian.org> | 2015-04-10 07:41:12 -0600 |
---|---|---|
committer | Anthony Fok <foka@debian.org> | 2015-04-10 07:41:12 -0600 |
commit | 41a67b5c4cf3eb3637f0e8d5cebab6facb6de408 (patch) | |
tree | 7377b34c933c257184311d0af92476d8b8cccc26 /lib | |
parent | 83ee903af43691e10153968d6bb240e6ebb1a837 (diff) | |
download | gitbook-41a67b5c4cf3eb3637f0e8d5cebab6facb6de408.zip gitbook-41a67b5c4cf3eb3637f0e8d5cebab6facb6de408.tar.gz gitbook-41a67b5c4cf3eb3637f0e8d5cebab6facb6de408.tar.bz2 |
Fix typo in lib/book.js: lanuages → languages
Diffstat (limited to 'lib')
-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) { |