diff options
Diffstat (limited to 'lib/models')
-rw-r--r-- | lib/models/page.js | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/models/page.js b/lib/models/page.js index ffb9601..1b0e9f8 100644 --- a/lib/models/page.js +++ b/lib/models/page.js @@ -32,19 +32,17 @@ Page.prototype.getDir = function() { }; /** - Return path of the page - - @return {String} + * Return path of the page + * @return {String} */ Page.prototype.getPath = function() { return this.getFile().getPath(); }; /** - Create a page for a file - - @param {File} file - @return {Page} + * Create a page for a file + * @param {File} file + * @return {Page} */ Page.createForFile = function(file) { return new Page({ |