diff --git a/docs/html/guide/topics/ui/controls/checkbox.jd b/docs/html/guide/topics/ui/controls/checkbox.jd index 35b8f560b15c5..ea70980ba096d 100644 --- a/docs/html/guide/topics/ui/controls/checkbox.jd +++ b/docs/html/guide/topics/ui/controls/checkbox.jd @@ -65,7 +65,7 @@ click event for both checkboxes:
public void onCheckboxClicked(View view) {
// Is the view now checked?
- boolean checked = (CheckBox) view).isChecked();
+ boolean checked = ((CheckBox) view).isChecked();
// Check which checkbox was clicked
switch(view.getId()) {
diff --git a/docs/html/tools/adk/adk.jd b/docs/html/tools/adk/adk.jd
index 2a0c7170f786f..049b6e92804a6 100644
--- a/docs/html/tools/adk/adk.jd
+++ b/docs/html/tools/adk/adk.jd
@@ -41,7 +41,7 @@ page.title=Accessory Development Kit 2011 Guide
Download
See also
diff --git a/test-runner/src/android/test/ProviderTestCase2.java b/test-runner/src/android/test/ProviderTestCase2.java
index 2811b0d4cf5d3..f7c4e03db7fd3 100644
--- a/test-runner/src/android/test/ProviderTestCase2.java
+++ b/test-runner/src/android/test/ProviderTestCase2.java
@@ -64,7 +64,7 @@ import java.io.File;
* {@link #ProviderTestCase2(Class, String)} as its first operation.
*
* For more information on content provider testing, please see
- * Content Provider Testing.
+ * Content Provider Testing.
*/
public abstract class ProviderTestCase2 extends AndroidTestCase {