diff options
| author | Romain Guy <romainguy@google.com> | 2012-10-17 11:06:11 -0700 |
|---|---|---|
| committer | Romain Guy <romainguy@google.com> | 2012-10-17 11:06:11 -0700 |
| commit | 6f931ccd31bc0a8a402072c1d87e682c8a30a404 (patch) | |
| tree | bd6d248bcb3ca6c70b9670fc5df725e2bcf1f39c /core/java/android | |
| parent | 0ee71adde01298784a2cbb667c4c1570bdbf0af0 (diff) | |
Fix javadoc
Change-Id: Ie98dd00f41add876f3740f5d37781a10c6bd41fe
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/os/AsyncTask.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java index 69e1de958fb5..ce5f1633a8cd 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 |
