Merge "Fix spelling errors in BluetoothGatt documentation" am: e7b05b8797

am: ea18806cb7

Change-Id: I5fcb0f3506a4e8856c2971302c98f4ba5b9ffffc
This commit is contained in:
android-build-prod (mdb)
2018-05-03 15:16:49 -07:00
committed by android-build-merger

View File

@@ -98,22 +98,22 @@ public final class BluetoothGatt implements BluetoothProfile {
public static final int GATT_FAILURE = 0x101; 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 * Bluetooth SIG. This is the default value if no connection parameter update
* is requested. * is requested.
*/ */
public static final int CONNECTION_PRIORITY_BALANCED = 0; public static final int CONNECTION_PRIORITY_BALANCED = 0;
/** /**
* Connection paramter update - Request a high priority, low latency connection. * Connection parameter update - Request a high priority, low latency connection.
* An application should only request high priority connection paramters to transfer * An application should only request high priority connection parameters to transfer large
* large amounts of data over LE quickly. Once the transfer is complete, the application * amounts of data over LE quickly. Once the transfer is complete, the application should
* should request {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED} connectoin parameters * request {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED} connection parameters to reduce
* to reduce energy use. * energy use.
*/ */
public static final int CONNECTION_PRIORITY_HIGH = 1; 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; public static final int CONNECTION_PRIORITY_LOW_POWER = 2;
/** /**