diff --git a/src/fw/services/normal/settings/settings_file.h b/src/fw/services/normal/settings/settings_file.h index 6a57e0f6..e02da27b 100644 --- a/src/fw/services/normal/settings/settings_file.h +++ b/src/fw/services/normal/settings/settings_file.h @@ -126,7 +126,7 @@ typedef struct { //! Callback used for using settings_file_each. //! The bool returned is used to control the iteration. //! - If a callback returns true, the iteration continues -//! - If a callback returns false, the ieration stops. +//! - If a callback returns false, the iteration stops. typedef bool (*SettingsFileEachCallback)(SettingsFile *file, SettingsRecordInfo *info, void *context); diff --git a/src/libutil/includes/util/list.h b/src/libutil/includes/util/list.h index 4e1efff3..6af1033e 100644 --- a/src/libutil/includes/util/list.h +++ b/src/libutil/includes/util/list.h @@ -28,7 +28,7 @@ typedef struct ListNode { typedef bool (*ListFilterCallback)(ListNode *found_node, void *data); //! - If a callback returns true, the iteration continues -//! - If a callback returns false, the ieration stops. +//! - If a callback returns false, the iteration stops. typedef bool (*ListForEachCallback)(ListNode *node, void *context); #define LIST_NODE_NULL { .next = NULL, .prev = NULL }