summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Anirudh Dewani <anirudhd@google.com> 2011-06-27 04:33:59 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2011-06-27 04:33:59 -0700
commitcf33a02bef19e1d0f11d119194c4f8439a06f1e2 (patch)
treea90f0000305db0ae97ea0f69dad606f4fef5f8fc
parent06ca9b90e664235d79304a4611529c09256d060e (diff)
parent3ba39ef20fdbe4512d3c3ad6ad7c833b14318391 (diff)
am 3ba39ef2: am 1f82dc08: Merge "Typo in spinner tutorial." into honeycomb-mr2
* commit '3ba39ef20fdbe4512d3c3ad6ad7c833b14318391': Typo in spinner tutorial.
-rw-r--r--docs/html/resources/tutorials/views/hello-spinner.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/resources/tutorials/views/hello-spinner.jd b/docs/html/resources/tutorials/views/hello-spinner.jd
index 7a3a9c3c1e82..e9dc20fb7ba8 100644
--- a/docs/html/resources/tutorials/views/hello-spinner.jd
+++ b/docs/html/resources/tutorials/views/hello-spinner.jd
@@ -105,7 +105,7 @@ public class MyOnItemSelectedListener implements OnItemSelectedListener {
public void onItemSelected(AdapterView&lt;?> parent,
View view, int pos, long id) {
- Toast.makeText(parent.getContext()), "The planet is " +
+ Toast.makeText(parent.getContext(), "The planet is " +
parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();
}