From e9c4225443ee025bf79a50967c39f621e6fe218e Mon Sep 17 00:00:00 2001 From: hai007 Date: Wed, 11 May 2022 16:40:40 -0700 Subject: [PATCH] Fix typo in the Nearby Sharing Windows Bluetooth classic socket logging. PiperOrigin-RevId: 448113611 --- .../platform/implementation/windows/bluetooth_classic_socket.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/platform/implementation/windows/bluetooth_classic_socket.cc b/internal/platform/implementation/windows/bluetooth_classic_socket.cc index e144a651..b8c10e91 100644 --- a/internal/platform/implementation/windows/bluetooth_classic_socket.cc +++ b/internal/platform/implementation/windows/bluetooth_classic_socket.cc @@ -122,7 +122,7 @@ ExceptionOr 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}; } }