summaryrefslogtreecommitdiffstats
path: root/docs/html/training/run-background-service
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2013-12-18 00:53:57 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-12-18 00:53:57 +0000
commit418312f44c3a69307526554b11e88679db529e3f (patch)
tree51c189ef4b6ebb06904958f2d5b485b5d367885c /docs/html/training/run-background-service
parent1732f2639b036522410037d5264a978235f7139a (diff)
parent991ba3b7f2d7164fab956b54c711d5ea523b2ba5 (diff)
downloadframeworks_base-418312f44c3a69307526554b11e88679db529e3f.zip
frameworks_base-418312f44c3a69307526554b11e88679db529e3f.tar.gz
frameworks_base-418312f44c3a69307526554b11e88679db529e3f.tar.bz2
am 991ba3b7: am 74e9e698: am 7d1f8e65: am efe10233: am 5dcb75e6: Merge "fix typos bug: 11693951 bug: 12118617" into klp-docs
* commit '991ba3b7f2d7164fab956b54c711d5ea523b2ba5': fix typos bug: 11693951 bug: 12118617
Diffstat (limited to 'docs/html/training/run-background-service')
-rw-r--r--docs/html/training/run-background-service/send-request.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/run-background-service/send-request.jd b/docs/html/training/run-background-service/send-request.jd
index 5b1114d..a9884c6 100644
--- a/docs/html/training/run-background-service/send-request.jd
+++ b/docs/html/training/run-background-service/send-request.jd
@@ -28,7 +28,7 @@ trainingnavtop=true
The previous lesson showed you how to create an {@link android.app.IntentService} class. This
lesson shows you how to trigger the {@link android.app.IntentService} to run an operation by
sending it an {@link android.content.Intent}. This {@link android.content.Intent} can
- contain optionally contain data for the {@link android.app.IntentService} to process. You can
+ optionally contain data for the {@link android.app.IntentService} to process. You can
send an {@link android.content.Intent} to an {@link android.app.IntentService} from any point
in an {@link android.app.Activity} or {@link android.app.Fragment}
</p>