From 202f560f85446008808e443ad28e438622bca49f Mon Sep 17 00:00:00 2001 From: Owen Lin Date: Mon, 28 Dec 2009 15:54:23 +0800 Subject: [PATCH] Fix a typo. Change-Id: Idbe649678a7321a6bd9511218788bc4dfb3cbdb4 --- core/java/android/os/AsyncTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java index 7d2c698895817..d28148c7652a8 100644 --- a/core/java/android/os/AsyncTask.java +++ b/core/java/android/os/AsyncTask.java @@ -82,7 +82,7 @@ import java.util.concurrent.atomic.AtomicInteger; *
  • Result, the type of the result of the background * computation.
  • * - *

    Not all types are always used by am asynchronous task. To mark a type as unused, + *

    Not all types are always used by an asynchronous task. To mark a type as unused, * simply use the type {@link Void}:

    *
      * private class MyTask extends AsyncTask<Void, Void, Void> { ... }