From 16cef29925d02c110a939baea6cd16152e672435 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 30 Apr 2013 13:25:14 -0700 Subject: [PATCH] Update directory --- src/app/directory.coffee | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/directory.coffee b/src/app/directory.coffee index d274ae6a9..2cce2db80 100644 --- a/src/app/directory.coffee +++ b/src/app/directory.coffee @@ -12,24 +12,26 @@ module.exports = class Directory path: null - # Public: Creates a new directory. + ### Public ### + + # Creates a new directory. # # path - A {String} representing the file directory # symlink - A {Boolean} indicating if the path is a symlink (default: false) constructor: (@path, @symlink=false) -> - # Public: Retrieves the basename of the directory. + # Retrieves the basename of the directory. # # Returns a {String}. getBaseName: -> fsUtils.base(@path) - # Public: Retrieves the directory's path. + # Retrieves the directory's path. # # Returns a {String}. getPath: -> @path - # Public: Retrieves the file entries in the directory. + # Retrieves the file entries in the directory. # # This does follow symlinks. #