spelling: id

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 11:08:04 -05:00
parent 7128e60f76
commit 2efa9cc170
7 changed files with 9 additions and 9 deletions

View file

@ -181,7 +181,7 @@ bool debug_db_is_generation_valid(int file_generation) {
}
if (file_header.file_id != (s_current_file_id - file_generation)) {
PBL_LOG(LOG_LEVEL_DEBUG, "Id: %"PRIu8" Expected: %u", file_header.file_id, (s_current_file_id - file_generation));
PBL_LOG(LOG_LEVEL_DEBUG, "ID: %"PRIu8" Expected: %u", file_header.file_id, (s_current_file_id - file_generation));
return false;
}

View file

@ -211,7 +211,7 @@ void command_version_info(void) {
char build_id_string[64];
version_copy_current_build_id_hex_string(build_id_string, sizeof(build_id_string));
prompt_send_response_fmt(buffer, sizeof(buffer), "Build Id:%s", build_id_string);
prompt_send_response_fmt(buffer, sizeof(buffer), "Build ID:%s", build_id_string);
char serial_number[MFG_SERIAL_NUMBER_SIZE + 1];
mfg_info_get_serialnumber(serial_number, sizeof(serial_number));
@ -239,7 +239,7 @@ void command_version_info(void) {
pmic_read_chip_info(&chip_id, &chip_revision, &buck1_vset);
prompt_send_response_fmt(buffer,
sizeof(buffer),
"PMIC Chip Id: 0x%"PRIx8" Chip Rev: 0x%"PRIx8" Buck1 VSET: 0x%"PRIx8,
"PMIC Chip ID: 0x%"PRIx8" Chip Rev: 0x%"PRIx8" Buck1 VSET: 0x%"PRIx8,
chip_id, chip_revision, buck1_vset);
#endif // CAPABILITY_HAS_PMIC

View file

@ -290,7 +290,7 @@ status_t blob_db_flush(BlobDBId db_id) {
if (db->flush) {
status_t rv = db->flush();
if (rv == S_SUCCESS) {
PBL_LOG(LOG_LEVEL_INFO, "Flushing BlobDB with Id %d", db_id);
PBL_LOG(LOG_LEVEL_INFO, "Flushing BlobDB with ID %d", db_id);
blob_db_event_put(BlobDBEventTypeFlush, db_id, NULL, 0);
}
return rv;

View file

@ -27,7 +27,7 @@ typedef enum {
NotificationReminder = (1 << 3)
} NotificationType;
//! Type and Id for the notification or reminder.
//! Type and ID for the notification or reminder.
typedef struct {
NotificationType type;
Uuid id;

View file

@ -133,7 +133,7 @@ static bool prv_populate_payload(ProtobufLogConfig *config, size_t buffer_len, u
const char *version_patch_ptr;
version_get_major_minor_patch(&v_major, &v_minor, &version_patch_ptr);
// Sender Id
// Sender ID
const char *watch_serial = mfg_get_serial_number();
pebble_pipeline_Payload payload = {

View file

@ -37,7 +37,7 @@ status_t reminders_insert(Reminder *reminder);
status_t reminders_init(void);
//! Delete a reminder
//! @param reminder_id pointer to an Id of the reminder to be deleted
//! @param reminder_id pointer to an ID of the reminder to be deleted
//! @return S_SUCCESS or appropriate error
status_t reminders_delete(ReminderId *reminder_id);

View file

@ -78,8 +78,8 @@ static inline GSize timeline_resources_get_gsize(TimelineResourceSize size) {
}
}
//! Tests if a given timeline resource id is a system resource
//! @param timeline_id Id of the timeline resource to test
//! Tests if a given timeline resource ID is a system resource
//! @param timeline_id ID of the timeline resource to test
//! @return `true` if system resource, `false` if not
bool timeline_resources_is_system(TimelineResourceId timeline_id);