diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java index 5d022b813a247..9a4b599f0e9b6 100644 --- a/core/java/android/os/AsyncTask.java +++ b/core/java/android/os/AsyncTask.java @@ -35,8 +35,8 @@ import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; /** - *
AsyncTask enables proper and easy use of the UI thread. This class allows to - * perform background operations and publish results on the UI thread without + *
AsyncTask enables proper and easy use of the UI thread. This class allows you + * to perform background operations and publish results on the UI thread without * having to manipulate threads and/or handlers.
* *AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler} @@ -55,7 +55,7 @@ import java.util.concurrent.atomic.AtomicInteger; *
For more information about using tasks and threads, read the - * Processes and + * Processes and * Threads developer guide.
*