From eb26cfa4ceb6b89ab2cd39cf026f2cfeec7462c2 Mon Sep 17 00:00:00 2001 From: Mike Colagrosso Date: Sun, 17 May 2015 23:58:12 -0600 Subject: [PATCH] Android Training: Add missing word The description of when to use an IntentService in create-service.jd is missing a word, which makes it difficult to follow. The cruical phrase is that an IntentService "is the preferred way to *perform* simple background operations". Change-Id: I13e4338cd2bad968d05b945ea398e2332f307850 --- docs/html/training/run-background-service/create-service.jd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/html/training/run-background-service/create-service.jd b/docs/html/training/run-background-service/create-service.jd index 5f4799c75eb04..9b9fcd2f17cfd 100644 --- a/docs/html/training/run-background-service/create-service.jd +++ b/docs/html/training/run-background-service/create-service.jd @@ -55,8 +55,8 @@ trainingnavtop=true

- However, in most cases an {@link android.app.IntentService} is the preferred way to simple - background operations. + However, in most cases an {@link android.app.IntentService} is the preferred way to perform + simple background operations.

This lesson shows you how to create your own subclass of {@link android.app.IntentService}.