You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by lo...@apache.org on 2013/08/28 00:23:55 UTC

docs commit: [CB-4630] adjusted parameter name in callback to reflect returned object

Updated Branches:
  refs/heads/master dda712015 -> c40aec7e9


[CB-4630] adjusted parameter name in callback to reflect returned object


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/c40aec7e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/c40aec7e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/c40aec7e

Branch: refs/heads/master
Commit: c40aec7e9dd7d1604fcb5052ecd46a7e7a79fd92
Parents: dda7120
Author: lorinbeer <lo...@adobe.com>
Authored: Tue Aug 27 15:22:47 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Tue Aug 27 15:23:58 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/file/directoryentry/directoryentry.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c40aec7e/docs/en/edge/cordova/file/directoryentry/directoryentry.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/file/directoryentry/directoryentry.md b/docs/en/edge/cordova/file/directoryentry/directoryentry.md
index f9d5ff7..997f692 100644
--- a/docs/en/edge/cordova/file/directoryentry/directoryentry.md
+++ b/docs/en/edge/cordova/file/directoryentry/directoryentry.md
@@ -359,8 +359,8 @@ __Parameters:__
 
 __Quick Example__
 
-    function success(parent) {
-        console.log("Parent Name: " + parent.name);
+    function success(fileEntry) {
+        console.log("File Name: " + fileEntry.name);
     }
 
     function fail(error) {