spelling: successfully

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2025-01-28 15:46:18 -05:00
parent aee29ca34b
commit 9e89559322
11 changed files with 15 additions and 15 deletions

View File

@@ -52,12 +52,12 @@ typedef struct {
//! reports and scan responses will be buffered. A PEBBLE_BLE_SCAN_EVENT will
//! be generated when there is data to be collected.
//! @see gap_le_consume_scan_results
//! @return 0 if scanning started succesfully or an error code otherwise.
//! @return 0 if scanning started successfully or an error code otherwise.
bool gap_le_start_scan(void);
//! @internal
//! Stops scanning.
//! @return 0 if scanning stopped succesfully or an error code otherwise.
//! @return 0 if scanning stopped successfully or an error code otherwise.
bool gap_le_stop_scan(void);
//! @internal

View File

@@ -26,7 +26,7 @@
//! @param number_str_length The length of the number_str buffer.
//! @param multiplier The factor by which to multiply the parsed number.
//! @param[out] number_out If the parsing was successful, the result will be stored here.
//! @return True if the string was parsed succesfully.
//! @return True if the string was parsed successfully.
//! @note The first comma or period found is treated as decimal separator. Any subsequent comma or
//! period that is found will cause parsing to be aborted and return false.
//! @note An empty / zero-length string still will fail to parse and return false.