Skip to content

Commit 25211f5

Browse files
missing cross refernces and grammar
1 parent 55657c5 commit 25211f5

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

connectivity/FEATURE_BLE/include/ble/Gap.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,8 @@ class Gap {
413413

414414
/**
415415
* Called when connection attempt ends. Check event.getStatus() to see if connection
416-
* was established. If this device is the peripheral and it as advertising this will
417-
* end advertising which will also create the onAdvertisingEnd event.
416+
* was established. If this device is the peripheral and it was advertising this will
417+
* end the advertising set which will also create the onAdvertisingEnd event.
418418
*
419419
* @see startAdvertising()
420420
* @see connect()
@@ -1093,6 +1093,7 @@ class Gap {
10931093
* @see EventHandler::onUpdateConnectionParametersRequest when a central
10941094
* receives a request to update the connection parameters.
10951095
*
1096+
* @see onUpdateConnectionParametersRequest
10961097
* @see acceptConnectionParametersUpdate to accept the request.
10971098
* @see rejectConnectionParametersUpdate to reject the request.
10981099
*/

connectivity/FEATURE_BLE/include/ble/SecurityManager.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ class SecurityManager
273273
* @param[in] result result of the pairing indicating success or reason for failure
274274
*
275275
* @see acceptPairingRequest()
276+
* @see requestPairing()
276277
*/
277278
virtual void pairingResult(ble::connection_handle_t connectionHandle, SecurityCompletionStatus_t result) {
278279
(void)connectionHandle;
@@ -626,8 +627,9 @@ class SecurityManager
626627
* or cancelPairingRequest if the user wishes to reject it.
627628
* @return BLE_ERROR_NONE or appropriate error code indicating the failure reason.
628629
*
629-
*
630630
* @see EventHandler::pairingRequest()
631+
* @see EventHandler::acceptPairingRequest()
632+
* @see EventHandler::cancelPairingRequest()
631633
*/
632634
ble_error_t setPairingRequestAuthorisation(bool required = true);
633635

0 commit comments

Comments
 (0)