Skip to content

Commit fe3b1cb

Browse files
committed
misc doc bug fixes
Change-Id: I68963d79422e5cedb1726e91e9639860b13a2471
1 parent 4eb6973 commit fe3b1cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/html/guide/topics/ui/controls/checkbox.jd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ click event for both checkboxes:</p>
6565
<pre>
6666
public void onCheckboxClicked(View view) {
6767
// Is the view now checked?
68-
boolean checked = (CheckBox) view).isChecked();
68+
boolean checked = ((CheckBox) view).isChecked();
6969

7070
// Check which checkbox was clicked
7171
switch(view.getId()) {

docs/html/tools/adk/adk.jd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ page.title=Accessory Development Kit 2011 Guide
4141

4242
<h2>Download</h2>
4343
<ol>
44-
<li><a href="https://dl-ssl.google.com/android/adk/adk_release_0512.zip">ADK package</a></li>
44+
<li><a href="https://dl-ssl.google.com/android/adk/adk_release_20120606.zip">ADK package</a></li>
4545
</ol>
4646

4747
<h2>See also</h2>

test-runner/src/android/test/ProviderTestCase2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
* {@link #ProviderTestCase2(Class, String)} as its first operation.
6565
* </p>
6666
* For more information on content provider testing, please see
67-
* <a href="{@docRoot}guide/topics/testing/provider_testing.html">Content Provider Testing</a>.
67+
* <a href="{@docRoot}tools/testing/contentprovider_testing.html">Content Provider Testing</a>.
6868
*/
6969
public abstract class ProviderTestCase2<T extends ContentProvider> extends AndroidTestCase {
7070

0 commit comments

Comments
 (0)