aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent <valodim@mugenguild.com>2015-09-29 12:34:43 +0200
committerVincent <valodim@mugenguild.com>2015-09-29 12:34:43 +0200
commit4308f1c61011a165ec10624eadef9f690a2f6db0 (patch)
tree9c5aafa3bbc5f90047dc655dd54efdca5804aa1e
parent0ba25696981a4c4d5aef01e4a1d683c8adf7522a (diff)
parented329b693da92f77b939eaff7721fc5e672359db (diff)
downloadopenpgp-api-4308f1c61011a165ec10624eadef9f690a2f6db0.tar.gz
openpgp-api-4308f1c61011a165ec10624eadef9f690a2f6db0.tar.bz2
openpgp-api-4308f1c61011a165ec10624eadef9f690a2f6db0.zip
Merge pull request #4 from cloehle/patch-1
fix typo a actvity
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 121f92c..d6e493c 100644
--- a/README.md
+++ b/README.md
@@ -106,7 +106,7 @@ Intent result = api.executeApi(data, is, os);
* ``OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED``
If ``RESULT_CODE_USER_INTERACTION_REQUIRED`` is returned, an additional ``PendingIntent`` is returned to the client, which must be used to get user input required to process the request.
- A ``PendingIntent`` is executed with ``startIntentSenderForResult``, which starts a activity, originally belonging to OpenKeychain, on the [task stack](http://developer.android.com/guide/components/tasks-and-back-stack.html) of the client.
+ A ``PendingIntent`` is executed with ``startIntentSenderForResult``, which starts an activity, originally belonging to OpenKeychain, on the [task stack](http://developer.android.com/guide/components/tasks-and-back-stack.html) of the client.
Only if ``RESULT_CODE_SUCCESS`` is returned, ``os`` actually contains data.
A nearly complete example looks like this:
```java