docs: Fixed typo.

Bug: 25359870
Change-Id: Ie0108bcb63928521e7dedeaccbe1617ee54c4f68
This commit is contained in:
sreevanis
2015-11-03 14:41:05 -08:00
parent 689b0ba6c3
commit b8200accbf

View File

@@ -91,7 +91,7 @@ or database operations, or computationally expensive calculations such as
resizing bitmaps should be done in a worker thread (or in the case of databases
operations, via an asynchronous request).</p>
<p>The most effecive way to create a worker thread for longer
<p>The most effective way to create a worker thread for longer
operations is with the {@link android.os.AsyncTask}
class. Simply extend {@link android.os.AsyncTask} and implement the
{@link android.os.AsyncTask#doInBackground doInBackground()} method to perform the work.