summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2010-10-14 13:42:19 -0700
committerScott Main <smain@google.com>2010-10-15 10:19:27 -0700
commit36cdecd89dbc3eb503197414f525e30ee241ba66 (patch)
tree289b768995a3b58f0a6c03fe4b787e7d6684db07 /docs/html/guide/topics
parent5249ad03454301744374d04e04b38aaad3b01530 (diff)
downloadframeworks_base-36cdecd89dbc3eb503197414f525e30ee241ba66.zip
frameworks_base-36cdecd89dbc3eb503197414f525e30ee241ba66.tar.gz
frameworks_base-36cdecd89dbc3eb503197414f525e30ee241ba66.tar.bz2
docs: fix typo; surface dev guide link in package description
Change-Id: I2dc09bb6b79cbe3f80819d6193eb0d8a3565310d
Diffstat (limited to 'docs/html/guide/topics')
-rw-r--r--docs/html/guide/topics/wireless/bluetooth.jd6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/topics/wireless/bluetooth.jd b/docs/html/guide/topics/wireless/bluetooth.jd
index fa2875b..98b6e7d 100644
--- a/docs/html/guide/topics/wireless/bluetooth.jd
+++ b/docs/html/guide/topics/wireless/bluetooth.jd
@@ -9,7 +9,7 @@ page.title=Bluetooth
<li>Android's bluetooth APIs allow your application to perform wireless data transactions with
other devices</li>
</ul>
-
+
<h2>In this document</h2>
<ol>
<li><a href="#TheBasics">The Basics</a></li>
@@ -32,7 +32,7 @@ other devices</li>
</li>
<li><a href="#ManagingAConnection">Managing a Connection</a></li>
</ol>
-
+
<h2>Key classes</h2>
<ol>
<li>{@link android.bluetooth.BluetoothAdapter}</li>
@@ -289,7 +289,7 @@ is discussed below.</p>
of paired devices to see if the desired device is already known. To do so,
call {@link android.bluetooth.BluetoothAdapter#getBondedDevices()}. This
will return a Set of {@link android.bluetooth.BluetoothDevice}s representing
-paired devices. For example, you can query all paired devices and then add then
+paired devices. For example, you can query all paired devices and then
show the name of each device to the user, using an ArrayAdapter:</p>
<pre>
Set&lt;BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();