Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ac7f0b8 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Idbe64967

* changes:
  Fix a typo.
parents 08dca8fa 202f560f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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; { ... }