You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2013/01/30 23:20:42 UTC

docs commit: CB-2307: Missed param when the docs were last updated

Updated Branches:
  refs/heads/master 461f74e5a -> 3ce8a0333


CB-2307: Missed param when the docs were last updated


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

Branch: refs/heads/master
Commit: 3ce8a03332b7dc5cf3de9a96be2fdd10f1c9545c
Parents: 461f74e
Author: Joe Bowser <bo...@apache.org>
Authored: Wed Jan 30 14:20:27 2013 -0800
Committer: Joe Bowser <bo...@apache.org>
Committed: Wed Jan 30 14:20:27 2013 -0800

----------------------------------------------------------------------
 .../edge/guide/plugin-development/android/index.md |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3ce8a033/docs/en/edge/guide/plugin-development/android/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/plugin-development/android/index.md b/docs/en/edge/guide/plugin-development/android/index.md
index 932dae1..e262c8a 100644
--- a/docs/en/edge/guide/plugin-development/android/index.md
+++ b/docs/en/edge/guide/plugin-development/android/index.md
@@ -136,7 +136,7 @@ application:
         public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
             if (action.equals("echo")) {
                 String message = args.getString(0); 
-                this.echo(message);
+                this.echo(message, callbackContext);
                 return true;
             }
             return false;