summaryrefslogtreecommitdiffstats
path: root/core/java/android/os/AsyncTask.java
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2012-10-17 11:06:11 -0700
committerRomain Guy <romainguy@google.com>2012-10-17 11:06:11 -0700
commit6f931ccd31bc0a8a402072c1d87e682c8a30a404 (patch)
treebd6d248bcb3ca6c70b9670fc5df725e2bcf1f39c /core/java/android/os/AsyncTask.java
parent0ee71adde01298784a2cbb667c4c1570bdbf0af0 (diff)
downloadframeworks_base-6f931ccd31bc0a8a402072c1d87e682c8a30a404.zip
frameworks_base-6f931ccd31bc0a8a402072c1d87e682c8a30a404.tar.gz
frameworks_base-6f931ccd31bc0a8a402072c1d87e682c8a30a404.tar.bz2
Fix javadoc
Change-Id: Ie98dd00f41add876f3740f5d37781a10c6bd41fe
Diffstat (limited to 'core/java/android/os/AsyncTask.java')
-rw-r--r--core/java/android/os/AsyncTask.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java
index 69e1de9..ce5f163 100644
--- a/core/java/android/os/AsyncTask.java
+++ b/core/java/android/os/AsyncTask.java
@@ -110,7 +110,7 @@ import java.util.concurrent.atomic.AtomicInteger;
* <h2>The 4 steps</h2>
* <p>When an asynchronous task is executed, the task goes through 4 steps:</p>
* <ol>
- * <li>{@link #onPreExecute()}, invoked on the UI thread immediately after the task
+ * <li>{@link #onPreExecute()}, invoked on the UI thread before the task
* is executed. This step is normally used to setup the task, for instance by
* showing a progress bar in the user interface.</li>
* <li>{@link #doInBackground}, invoked on the background thread