From e130709752b5cdee901c07d3cbcb2de8ec505f12 Mon Sep 17 00:00:00 2001 From: 77web Date: Sat, 23 Mar 2013 14:19:27 +0900 Subject: [PATCH 1/2] [components/filesystem]fixed chmod's sequence number of recursive argument --- components/filesystem.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/filesystem.rst b/components/filesystem.rst index 62e5be19f8e..8b6208c67b3 100644 --- a/components/filesystem.rst +++ b/components/filesystem.rst @@ -146,7 +146,7 @@ recursive option:: Chmod ~~~~~ -Chmod is used to change the mode of a file. The third argument is a boolean +Chmod is used to change the mode of a file. The fourth argument is a boolean recursive option:: // set the mode of the video to 0600 From e06de6b2a3482f505cdc22cab661640f475e299e Mon Sep 17 00:00:00 2001 From: 77web Date: Sat, 23 Mar 2013 14:27:58 +0900 Subject: [PATCH 2/2] [components/filesystem]fixed description for copy's third argument according to actual code --- components/filesystem.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/filesystem.rst b/components/filesystem.rst index 8b6208c67b3..6e5ca5140fa 100644 --- a/components/filesystem.rst +++ b/components/filesystem.rst @@ -82,7 +82,7 @@ Copy ~~~~ This method is used to copy files. If the target already exists, the file is -copied only if the source modification date is earlier than the target. This +copied only if the source modification date is later than the target. This behavior can be overridden by the third boolean argument:: // works only if image-ICC has been modified after image.jpg