From bc6daaeac2120d3ce6c11ae3a042e1a4b8a44a80 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Jun 2013 08:32:58 -0700 Subject: [PATCH] Make function comment accurate --- src/stdlib/fs-utils.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stdlib/fs-utils.coffee b/src/stdlib/fs-utils.coffee index 66cf98a18..6d2878d7c 100644 --- a/src/stdlib/fs-utils.coffee +++ b/src/stdlib/fs-utils.coffee @@ -102,8 +102,7 @@ module.exports = move: (source, target) -> fs.renameSync(source, target) - # Remove a file at the given path. Throws an error if path is not a - # file or a symbolic link to a file. + # Remove the file or directory at the given path. remove: (pathToRemove) -> rimraf.sync(pathToRemove)