summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lechner <david@pybricks.com>2023-05-12 16:26:48 -0500
committerDamien George <damien@micropython.org>2023-05-19 21:58:32 +1000
commit978829fcd6a6cae2a004fc1425f968c3b6a093c7 (patch)
treeec42efbc1079363b5a5d723dcb83b532594152de
parent46d070bfeeda5926e222a49be02196cf7e8f69a8 (diff)
shared/upytesthelper: Fix spelling of "default".
Signed-off-by: David Lechner <david@pybricks.com>
-rw-r--r--shared/upytesthelper/upytesthelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/upytesthelper/upytesthelper.c b/shared/upytesthelper/upytesthelper.c
index 9553ff468..12fa8276b 100644
--- a/shared/upytesthelper/upytesthelper.c
+++ b/shared/upytesthelper/upytesthelper.c
@@ -61,7 +61,7 @@ bool upytest_is_failed(void) {
// MP_PLAT_PRINT_STRN() should be redirected to this function.
// It will pass-through any content to mp_hal_stdout_tx_strn_cooked()
-// (the dfault value of MP_PLAT_PRINT_STRN), but will also match
+// (the default value of MP_PLAT_PRINT_STRN), but will also match
// it to the expected output as set by upytest_set_expected_output().
// If mismatch happens, upytest_is_failed() returns true.
void upytest_output(const char *str, mp_uint_t len) {