diff options
| author | Patrick Tjin <pattjin@google.com> | 2014-02-25 14:52:23 -0800 |
|---|---|---|
| committer | Patrick Tjin <pattjin@google.com> | 2014-02-25 14:52:23 -0800 |
| commit | 72fa3ed1a04d1d3344dfd231fc36dedfb133a8c0 (patch) | |
| tree | bf1018c545e823db1042538f148a0c569a66e0a6 /core/java/android/os/AsyncTask.java | |
| parent | 24bcc34f78c0fa95a6b2feb1c06168d13f43ff1c (diff) | |
Fix typo in documentation
Change-Id: Ida827957623cf49981e5a0c2c9193ef4efe8d1ce
Diffstat (limited to 'core/java/android/os/AsyncTask.java')
| -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 26e09b63b8a1..4f91d1993305 100644 --- a/core/java/android/os/AsyncTask.java +++ b/core/java/android/os/AsyncTask.java @@ -40,7 +40,7 @@ import java.util.concurrent.atomic.AtomicInteger; * and does not constitute a generic threading framework. AsyncTasks should ideally be * used for short operations (a few seconds at the most.) If you need to keep threads * running for long periods of time, it is highly recommended you use the various APIs - * provided by the <code>java.util.concurrent</code> pacakge such as {@link Executor}, + * provided by the <code>java.util.concurrent</code> package such as {@link Executor}, * {@link ThreadPoolExecutor} and {@link FutureTask}.</p> * * <p>An asynchronous task is defined by a computation that runs on a background thread and |
