summaryrefslogtreecommitdiffstatshomepage
path: root/examples/usercmodule/cexample/examplemodule.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2025-02-18 13:24:11 +0100
committerDamien George <damien@micropython.org>2025-02-25 16:11:33 +1100
commit5e206fdeb5225ce24efb9411cc879bafaa04b86f (patch)
treea7f26a550a7fa45ecc804108fad216f1004acec3 /examples/usercmodule/cexample/examplemodule.c
parent8b1ed4473dd215d564498f577cb6f3339c3c2e57 (diff)
downloadmicropython-5e206fdeb5225ce24efb9411cc879bafaa04b86f.tar.gz
micropython-5e206fdeb5225ce24efb9411cc879bafaa04b86f.zip
all: Upgrade codespell to v2.4.1.
This commit upgrades from codespell==2.2.6 to the current codespell==2.4.1, adding emac to the ignore-words-list. Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'examples/usercmodule/cexample/examplemodule.c')
-rw-r--r--examples/usercmodule/cexample/examplemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/usercmodule/cexample/examplemodule.c b/examples/usercmodule/cexample/examplemodule.c
index d13515e72c..83cc3b27c0 100644
--- a/examples/usercmodule/cexample/examplemodule.c
+++ b/examples/usercmodule/cexample/examplemodule.c
@@ -74,7 +74,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
// - A custom representation for __repr__ and __str__.
// - Custom attribute handling to create a read/write "property".
//
-// It re-uses some of the elements of the basic Timer class. This is allowed
+// It reuses some of the elements of the basic Timer class. This is allowed
// because they both use example_Timer_obj_t as the instance structure.
// Handles AdvancedTimer.__repr__, AdvancedTimer.__str__.