File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -146,8 +146,8 @@ class BLEProcess : private mbed::NonCopyable<BLEProcess> {
146
146
}
147
147
148
148
/* *
149
- * Stop the gatt client process when a the device is disconnected then
150
- * restart advertising.
149
+ * Stop the gatt client process when the device is disconnected then restart
150
+ * advertising.
151
151
*/
152
152
void when_disconnection (const Gap::DisconnectionCallbackParams_t *event)
153
153
{
Original file line number Diff line number Diff line change @@ -177,13 +177,13 @@ class GattClientProcess : private mbed::NonCopyable<GattClientProcess> {
177
177
/* *
178
178
* Handle services discovered.
179
179
*
180
- * The GattClient invoke this function when a service has been discovered.
180
+ * The GattClient invokes this function when a service has been discovered.
181
181
*
182
182
* @see GattClient::launchServiceDiscovery
183
183
*/
184
184
void when_service_discovered (const DiscoveredService *discovered_service)
185
185
{
186
- // print informations of the service discovered
186
+ // print information of the service discovered
187
187
printf (" Service discovered: value = " );
188
188
print_uuid (discovered_service->getUUID ());
189
189
printf (" , start = %u, end = %u.\r\n " ,
@@ -227,7 +227,7 @@ class GattClientProcess : private mbed::NonCopyable<GattClientProcess> {
227
227
/* *
228
228
* Handle termination of the service and characteristic discovery process.
229
229
*
230
- * The GattClient invoke this function when a the service and characteristic
230
+ * The GattClient invokes this function when the service and characteristic
231
231
* discovery process ends.
232
232
*
233
233
* @see GattClient::onServiceDiscoveryTermination
You can’t perform that action at this time.
0 commit comments