From a35061eaf897a720c786b89f7392f6c3c75867e5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:05:19 -0500 Subject: [PATCH] spelling: iteration Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/settings/settings_file.h | 2 +- src/libutil/includes/util/list.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }