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
This commit is contained in:
Mike Colagrosso
2015-05-17 23:58:12 -06:00
parent 932f399c55
commit eb26cfa4ce

View File

@@ -55,8 +55,8 @@ trainingnavtop=true
</li>
</ul>
<p>
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.
</p>
<p>
This lesson shows you how to create your own subclass of {@link android.app.IntentService}.