Fix typo in the Nearby Sharing Windows Bluetooth classic socket logging.

PiperOrigin-RevId: 448113611
This commit is contained in:
hai007
2022-05-11 16:42:58 -07:00
committed by Copybara-Service
parent 12cef58420
commit e9c4225443
@@ -122,7 +122,7 @@ ExceptionOr<ByteArray> BluetoothSocket::BluetoothInputStream::Read(
ByteArray data((char*)buffer.data(), buffer.Length());
return ExceptionOr(data);
} catch (...) {
NEARBY_LOGS(ERROR) << "Failed to read daat from input stream.";
NEARBY_LOGS(ERROR) << "Failed to read data from input stream.";
return {Exception::kIo};
}
}