diff options
author | Elliott Hughes <enh@google.com> | 2009-07-30 17:00:34 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2009-08-21 13:10:55 -0700 |
commit | 7f877069274c94b373478a8d0c969c9cfd93864f (patch) | |
tree | b5592410de891fd5b3b5992084bc567d2ded3354 /docs/html/guide/appendix/faq/commontasks.jd | |
parent | 56a63fedcf4caa5b85994dc9f2d960293c2696e2 (diff) | |
download | frameworks_base-7f877069274c94b373478a8d0c969c9cfd93864f.zip frameworks_base-7f877069274c94b373478a8d0c969c9cfd93864f.tar.gz frameworks_base-7f877069274c94b373478a8d0c969c9cfd93864f.tar.bz2 |
Fix all typos (found by script) in the Android documentation.
I haven't touched instances of "behaviour", "dequeue", "removeable",
"resizeable", or "removeable" because all are accepted variant spellings
and I don't know what the policy is on such things.
Diffstat (limited to 'docs/html/guide/appendix/faq/commontasks.jd')
-rw-r--r-- | docs/html/guide/appendix/faq/commontasks.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/appendix/faq/commontasks.jd b/docs/html/guide/appendix/faq/commontasks.jd index e88a867..c4fc52a 100644 --- a/docs/html/guide/appendix/faq/commontasks.jd +++ b/docs/html/guide/appendix/faq/commontasks.jd @@ -328,7 +328,7 @@ loopback interface. <p>The listening classes, called broadcast receivers, extend {@link android.content.BroadcastReceiver BroadcastReceiver}. If you want Android to instantiate the object whenever an appropriate intent notification is sent, define the receiver with a <code><receiver></code> element - in the AndroidManifext.xml file. If the caller is expected to instantiate the + in the AndroidManifest.xml file. If the caller is expected to instantiate the object in preparation to receive a message, this is not required. The receiver will get a call to their {@link android.content.BroadcastReceiver#onReceive(android.content.Context,android.content.Intent) BroadcastReceiver.onReceive()} method. A receiver can define an <code><intent-filter></code> tag @@ -468,7 +468,7 @@ user receiving new e-mail.</p> }; -private void IncomingMotherInlawCall(Connection c) { +private void IncomingMotherInLawCall(Connection c) { String Text; // "Answer" callback. @@ -486,7 +486,7 @@ private void IncomingMotherInlawCall(Connection c) { new AlertDialog.Builder(this) .setMessage("Phyllis is calling") .setPositiveButton("Answer", acceptMsg) - .setOnCanceListener(new OnCancelListener() { + .setOnCancelListener(new OnCancelListener() { public void onCancel(DialogInterface dialog) { rejectMsg.sendToTarget(); }}); |