shutil.copy(from, to) # Copies the file.
shutil.copytree(from, to) # Copies the directory.
-os.rename(from, to) # Renames the file or directory.
+os.rename(from, to) # Renames or moves the file or directory.
os.replace(from, to) # Same, but overwrites 'to' if it exists.
os.remove(<path>) # Deletes the file.
diff --git a/parse.js b/parse.js
index 9f6d345..d2667af 100755
--- a/parse.js
+++ b/parse.js
@@ -34,7 +34,7 @@ const TOC =
'
\n';
const OS_RENAME =
- 'os.rename(from, to) # Renames the file or directory.\n' +
+ 'os.rename(from, to) # Renames or moves the file or directory.\n' +
'os.replace(from, to) # Same, but overwrites \'to\' if it exists.\n';
const SHUTIL_COPY =