spelling: should

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 10:59:32 -05:00
parent 5cb667ae61
commit 1d3a78f7b6
2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ void expandable_dialog_init(ExpandableDialog *expandable_dialog, const char *dia
//! @return \ref Dialog
Dialog *expandable_dialog_get_dialog(ExpandableDialog *expandable_dialog);
//! Sets whether or not the expandable dialog should should show its action bar.
//! Sets whether or not the expandable dialog should show its action bar.
//! @param expandable_dialog Pointer to the \ref ExpandableDialog to set on
//! @param show_action_bar Boolean indicating whether to show the action bar
void expandable_dialog_show_action_bar(ExpandableDialog *expandable_dialog,

View File

@ -234,7 +234,7 @@ void test_heap___heap_bytes_free(void) {
int after_available = heap_bytes_free();
// make sure the two values are within 16 bytes (usually shoule be 0-8, but 16 for safety)
// make sure the two values are within 16 bytes (usually should be 0-8, but 16 for safety)
cl_assert(abs((before_available - malloc_size_bytes) - after_available) < 16);
heap_free(heap, ptr, 0);
@ -263,7 +263,7 @@ void test_heap__heap_bytes_used(void) {
int after_used = heap_bytes_used();
// make sure the two values are within 16 bytes (usually shoule be 0-8, but 16 for safety)
// make sure the two values are within 16 bytes (usually should be 0-8, but 16 for safety)
cl_assert(abs((before_used + malloc_size_bytes) - (after_used)) < 16);
heap_free(heap, ptr, 0);