Skip to content

Commit 2cad95c

Browse files
authored
chore: remove unnecessary bracket from readme
1 parent 4fe0db9 commit 2cad95c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ delete response;
5858
**Important**: You should call the `client->handle_received_client_data_event` function with received data for all `SIMCONNECT_RECV_ID_CLIENT_DATA` events where the RequestID matches `jetbridge::kDownlinkRequest`. Basically, add something along these lines to your `MyDispatchProc`:
5959

6060
```c++
61-
case SIMCONNECT_RECV_ID_CLIENT_DATA: {
61+
case SIMCONNECT_RECV_ID_CLIENT_DATA:
6262
auto e = static_cast<SIMCONNECT_RECV_CLIENT_DATA*>(pData);
6363
if (e->dwRequestID == jetbridge::kDownlinkRequest) client->handle_received_client_data_event(e);
6464
break;

0 commit comments

Comments
 (0)