summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-prod (mdb) <android-build-team-robot@google.com>2018-05-03 20:47:01 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-05-03 20:47:01 +0000
commite7b05b87979dcaebcb22bda18e44f7bd37cddfc2 (patch)
tree6709ff6bc1eef58157910a9beb17e4c097b36c6f
parent1c4a22fb083af572dc5c722a4ebf0fac6620705a (diff)
parent505c05839b8b28c5c465c2a537cf3da8a2004e63 (diff)
downloadbase-e7b05b87979dcaebcb22bda18e44f7bd37cddfc2.tar.gz
Merge "Fix spelling errors in BluetoothGatt documentation"android-o-mr1-iot-release-1.0.0
-rw-r--r--core/java/android/bluetooth/BluetoothGatt.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/java/android/bluetooth/BluetoothGatt.java b/core/java/android/bluetooth/BluetoothGatt.java
index 71edc8a32c90..457119dc5bfe 100644
--- a/core/java/android/bluetooth/BluetoothGatt.java
+++ b/core/java/android/bluetooth/BluetoothGatt.java
@@ -98,22 +98,22 @@ public final class BluetoothGatt implements BluetoothProfile {
public static final int GATT_FAILURE = 0x101;
/**
- * Connection paramter update - Use the connection paramters recommended by the
+ * Connection parameter update - Use the connection parameters recommended by the
* Bluetooth SIG. This is the default value if no connection parameter update
* is requested.
*/
public static final int CONNECTION_PRIORITY_BALANCED = 0;
/**
- * Connection paramter update - Request a high priority, low latency connection.
- * An application should only request high priority connection paramters to transfer
- * large amounts of data over LE quickly. Once the transfer is complete, the application
- * should request {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED} connectoin parameters
- * to reduce energy use.
+ * Connection parameter update - Request a high priority, low latency connection.
+ * An application should only request high priority connection parameters to transfer large
+ * amounts of data over LE quickly. Once the transfer is complete, the application should
+ * request {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED} connection parameters to reduce
+ * energy use.
*/
public static final int CONNECTION_PRIORITY_HIGH = 1;
- /** Connection paramter update - Request low power, reduced data rate connection parameters. */
+ /** Connection parameter update - Request low power, reduced data rate connection parameters. */
public static final int CONNECTION_PRIORITY_LOW_POWER = 2;
/**