From 8292415bf99ebe46cbf9ebf34349dcf2b42a03cd Mon Sep 17 00:00:00 2001 From: Ivan Baranov Date: Mon, 4 Jul 2016 11:20:37 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b1aa103..8c0409a 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,10 @@ rxBluetooth.observeConnectDevice(bluetoothDevice, uuid) // Connected to the device, do anything with the socket } }, new Action1() { - + @Override public void call(Throwable throwable) { - + // Error occured - + } - + }); + @Override public void call(Throwable throwable) { + // Error occured + } + }); ``` ##### Observing discovery state @@ -179,7 +179,7 @@ rxBluetooth.closeProfileProxy(int profile, BluetoothProfile proxy); ``` ##### Read and Write with BluetoothSocket -After create a connection to the device, you can use `BluetoothConnection` class to read and write with its socket. +After creating a connection to the device, you can use `BluetoothConnection` class to read and write with its socket. **Read:** ```java