Skip to content

Commit 4bf95bc

Browse files
author
Amanda Butler
authored
Copy edit DiscoveredService.h
Make minor copy edits, mostly for active voice and branding.
1 parent 7a4ac93 commit 4bf95bc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

features/FEATURE_BLE/ble/DiscoveredService.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@
3232
/**
3333
* Representation of a GATT service discovered.
3434
*
35-
* GATT Services are discovered on distant GATT servers by the discovery
36-
* procedure which can be initiated by calling
35+
* The discovery procedure discovers GATT Services are discovered on distant
36+
* GATT servers, which can be initiated by calling
3737
* GattClient::launchServiceDiscovery() or GattClient::discoverServices(). The
38-
* discovery process will pass instances of this class to the callback handling
38+
* discovery process passes instances of this class to the callback handling
3939
* service discovered.
4040
*
4141
* Discovered services are characterized by the UUID of the service discovered
4242
* and the range of the GATT attributes belonging to the service.
4343
*
4444
* The UUID can be queried by calling getUUID() while the begining of the
45-
* attribute range can be obtained via getStartHandle() and the end of the
45+
* attribute range can be obtained through getStartHandle() and the end of the
4646
* attribute range with a call to getEndHandle().
4747
*
4848
* The characteristics composing the service may be discovered by the function
@@ -84,8 +84,8 @@ class DiscoveredService {
8484
/**
8585
* Construct a DiscoveredService instance.
8686
*
87-
* @important This API is not meant to be used publicly it is meant to be
88-
* used by internal APIs of mbed BLE.
87+
* @important This API is not meant to be used publicly. It is meant to be
88+
* used by internal APIs of Mbed BLE.
8989
*/
9090
DiscoveredService() :
9191
uuid(UUID::ShortUUIDBytes_t(0)),
@@ -96,8 +96,8 @@ class DiscoveredService {
9696
/**
9797
* Set information about the discovered service.
9898
*
99-
* @important This API is not meant to be used publicly it is meant to be
100-
* used by internal APIs of mbed BLE.
99+
* @important This API is not meant to be used publicly. It is meant to be
100+
* used by internal APIs of Mbed BLE.
101101
*
102102
* @param[in] uuidIn The UUID of the discovered service.
103103
* @param[in] startHandleIn The start handle of the discovered service in
@@ -118,8 +118,8 @@ class DiscoveredService {
118118
/**
119119
* Set the start and end handle of the discovered service.
120120
*
121-
* @important This API is not meant to be used publicly it is meant to be
122-
* used by internal APIs of mbed BLE.
121+
* @important This API is not meant to be used publicly. It is meant to be
122+
* used by internal APIs of Mbed BLE.
123123
*
124124
* @param[in] startHandleIn The start handle of the discovered service in
125125
* the peer's GATT server.
@@ -137,8 +137,8 @@ class DiscoveredService {
137137
/**
138138
* Set the long UUID of the discovered service.
139139
*
140-
* @important This API is not meant to be used publicly it is meant to be
141-
* used by internal APIs of mbed BLE.
140+
* @important This API is not meant to be used publicly. It is meant to be
141+
* used by internal APIs of Mbed BLE.
142142
*
143143
* @param[in] longUUID The bytes composing the long UUID of this discovered
144144
* service.

0 commit comments

Comments
 (0)