Updated Branches: refs/heads/master c40aec7e9 -> fcd56a46a
[CB-4629] changed 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/fcd56a46 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/fcd56a46 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/fcd56a46 Branch: refs/heads/master Commit: fcd56a46a631edd50d511ac72381e5f230b806b7 Parents: c40aec7 Author: lorinbeer <[email protected]> Authored: Tue Aug 27 15:30:49 2013 -0700 Committer: lorinbeer <[email protected]> Committed: Tue Aug 27 15:30:49 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/fcd56a46/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 997f692..cec2c61 100644 --- a/docs/en/edge/cordova/file/directoryentry/directoryentry.md +++ b/docs/en/edge/cordova/file/directoryentry/directoryentry.md @@ -330,8 +330,8 @@ __Parameters:__ __Quick Example__ - function success(parent) { - console.log("Parent Name: " + parent.name); + function success(dirEntry) { + console.log("Directory Name: " + dirEntry.name); } function fail(error) {
