diff --git a/README.md b/README.md index a4db799..3d60fea 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ This function gets the response providing the BibleJS `reference`. ### Params - **String** `reference`: The verse reference. It can be in the following formats: ``` - e.g. Genesis 1:1 - returns one verse + e.g. Genesis 1:1 - returns one verse or Genesis 1:1,2 - returns two verses (1 and 2) or Genesis 1:1-10 - returns the verses 1 - 10 or Genesis 1 - returns the whole chapter diff --git a/lib/index.js b/lib/index.js index 22e3648..ce72ccc 100644 --- a/lib/index.js +++ b/lib/index.js @@ -53,10 +53,10 @@ var BibleJS = module.exports = function (options) { * @param {String} reference The verse reference. It can be in the following formats: * * ``` - * e.g. Genesis 1:1 - returns one verse - * or Genesis 1:1,2 - returns two verses (1 and 2) - * or Genesis 1:1-10 - returns the verses 1 - 10 - * or Genesis 1 - returns the whole chapter + * e.g. Genesis 1:1 - returns one verse + * or Genesis 1:1,2 - returns two verses (1 and 2) + * or Genesis 1:1-10 - returns the verses 1 - 10 + * or Genesis 1 - returns the whole chapter * ``` * * @param {Function} callback The callback function.