You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2013/02/27 16:15:47 UTC

docs commit: Ammendment to documention for iOS MultiPart PluginResult

Updated Branches:
  refs/heads/master 9927fcdf9 -> 0d803a1e1


Ammendment to documention for iOS MultiPart PluginResult


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

Branch: refs/heads/master
Commit: 0d803a1e12c2e7ff0e1339373b0add76ee599aa0
Parents: 9927fcd
Author: Michal Mocny <mm...@gmail.com>
Authored: Wed Feb 27 10:15:00 2013 -0500
Committer: Michal Mocny <mm...@gmail.com>
Committed: Wed Feb 27 10:15:00 2013 -0500

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


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/0d803a1e/docs/en/edge/guide/plugin-development/ios/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/plugin-development/ios/index.md b/docs/en/edge/guide/plugin-development/ios/index.md
index d536b95..f1de066 100644
--- a/docs/en/edge/guide/plugin-development/ios/index.md
+++ b/docs/en/edge/guide/plugin-development/ios/index.md
@@ -77,7 +77,7 @@ Using CDVPluginResult you can return a variety of result types back to your java
 
     + (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAs...
 
-The types you can create are: `String`, `Int`, `Double`, `Bool`, `Array`, `Dictionary`, `ArrayBuffer`, and `Multipart`.  Or, don't attach any result (just send a status).  Or, ruturn an Error.  You can even not send any result at all.
+The types you can create are: `String`, `Int`, `Double`, `Bool`, `Array`, `Dictionary`, `ArrayBuffer`, and `Multipart`.  Or, don't attach any arguments (just send a status).  Or, return an Error.  You can even chose to not send any plugin result at all (your callback will not fire).
 
 ### Notes