summaryrefslogtreecommitdiffstatshomepage
path: root/examples/usercmodule/cexample/examplemodule.c
diff options
context:
space:
mode:
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__.