spelling: iteration

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 21:05:19 -05:00
parent d78f6df080
commit a35061eaf8
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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 }