Fix a typo.

Change-Id: Idbe649678a7321a6bd9511218788bc4dfb3cbdb4
This commit is contained in:
Owen Lin
2009-12-28 15:54:23 +08:00
parent ecc1f6eca2
commit 202f560f85

View File

@@ -82,7 +82,7 @@ import java.util.concurrent.atomic.AtomicInteger;
* <li><code>Result</code>, the type of the result of the background
* computation.</li>
* </ol>
* <p>Not all types are always used by am asynchronous task. To mark a type as unused,
* <p>Not all types are always used by an asynchronous task. To mark a type as unused,
* simply use the type {@link Void}:</p>
* <pre>
* private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }