Skip to content

Commit fda5b19

Browse files
scottamainAndroid (Google) Code Review
authored andcommitted
Merge "docs: fix typo; surface dev guide link in package description" into froyo
2 parents 09da960 + 36cdecd commit fda5b19

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

core/java/android/bluetooth/package.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<HTML>
22
<BODY>
3-
Provides classes that manage Bluetooth functionality, such as scanning for
4-
devices, connecting with devices, and managing data transfer between devices.
3+
<p>Provides classes that manage Bluetooth functionality, such as scanning for
4+
devices, connecting with devices, and managing data transfer between devices.</p>
5+
6+
<p>For a complete guide to using the Bluetooth APIs, see the <a
7+
href="{@docRoot}guide/topics/wireless/bluetooth.html">Bluetooth</a> developer guide.</p>
8+
{@more}
59

610
<p>The Bluetooth APIs let applications:</p>
711
<ul>
@@ -20,9 +24,6 @@
2024
permission.
2125
</p>
2226

23-
<p>For a detailed guide to using the Bluetooth APIs, see the <a
24-
href="{@docRoot}guide/topics/wireless/bluetooth.html">Bluetooth Dev Guide topic</a>.</p>
25-
2627
<p class="note"><strong>Note:</strong>
2728
Not all Android devices are guaranteed to have Bluetooth functionality.</p>
2829
</BODY>

docs/html/guide/topics/wireless/bluetooth.jd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ page.title=Bluetooth
99
<li>Android's bluetooth APIs allow your application to perform wireless data transactions with
1010
other devices</li>
1111
</ul>
12-
12+
1313
<h2>In this document</h2>
1414
<ol>
1515
<li><a href="#TheBasics">The Basics</a></li>
@@ -32,7 +32,7 @@ other devices</li>
3232
</li>
3333
<li><a href="#ManagingAConnection">Managing a Connection</a></li>
3434
</ol>
35-
35+
3636
<h2>Key classes</h2>
3737
<ol>
3838
<li>{@link android.bluetooth.BluetoothAdapter}</li>
@@ -289,7 +289,7 @@ is discussed below.</p>
289289
of paired devices to see if the desired device is already known. To do so,
290290
call {@link android.bluetooth.BluetoothAdapter#getBondedDevices()}. This
291291
will return a Set of {@link android.bluetooth.BluetoothDevice}s representing
292-
paired devices. For example, you can query all paired devices and then add then
292+
paired devices. For example, you can query all paired devices and then
293293
show the name of each device to the user, using an ArrayAdapter:</p>
294294
<pre>
295295
Set&lt;BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();

0 commit comments

Comments
 (0)