From 36cdecd89dbc3eb503197414f525e30ee241ba66 Mon Sep 17 00:00:00 2001
From: Scott Main
Date: Thu, 14 Oct 2010 13:42:19 -0700
Subject: docs: fix typo; surface dev guide link in package description
Change-Id: I2dc09bb6b79cbe3f80819d6193eb0d8a3565310d
---
core/java/android/bluetooth/package.html | 11 ++++++-----
docs/html/guide/topics/wireless/bluetooth.jd | 6 +++---
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/core/java/android/bluetooth/package.html b/core/java/android/bluetooth/package.html
index 5ff240c706ca..9ac42dc58352 100644
--- a/core/java/android/bluetooth/package.html
+++ b/core/java/android/bluetooth/package.html
@@ -1,7 +1,11 @@
-Provides classes that manage Bluetooth functionality, such as scanning for
-devices, connecting with devices, and managing data transfer between devices.
+Provides classes that manage Bluetooth functionality, such as scanning for
+devices, connecting with devices, and managing data transfer between devices.
+
+For a complete guide to using the Bluetooth APIs, see the Bluetooth developer guide.
+{@more}
The Bluetooth APIs let applications:
@@ -20,9 +24,6 @@ also requires the {@link android.Manifest.permission#BLUETOOTH_ADMIN}
permission.
-For a detailed guide to using the Bluetooth APIs, see the Bluetooth Dev Guide topic.
-
Note:
Not all Android devices are guaranteed to have Bluetooth functionality.
diff --git a/docs/html/guide/topics/wireless/bluetooth.jd b/docs/html/guide/topics/wireless/bluetooth.jd
index fa2875b3647d..98b6e7d278d6 100644
--- a/docs/html/guide/topics/wireless/bluetooth.jd
+++ b/docs/html/guide/topics/wireless/bluetooth.jd
@@ -9,7 +9,7 @@ page.title=Bluetooth
Android's bluetooth APIs allow your application to perform wireless data transactions with
other devices
-
+
In this document
- The Basics
@@ -32,7 +32,7 @@ other devices
- Managing a Connection
-
+
Key classes
- {@link android.bluetooth.BluetoothAdapter}
@@ -289,7 +289,7 @@ is discussed below.
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:
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
--
cgit v1.2.3-59-g8ed1b