summaryrefslogtreecommitdiff
path: root/docs/develop/cmodules.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/develop/cmodules.rst')
-rw-r--r--docs/develop/cmodules.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/develop/cmodules.rst b/docs/develop/cmodules.rst
index 6bc2f62ab..75dbc953c 100644
--- a/docs/develop/cmodules.rst
+++ b/docs/develop/cmodules.rst
@@ -53,7 +53,7 @@ A MicroPython user C module is a directory with the following files:
``SRC_USERMOD_C`` or ``SRC_USERMOD_LIB_C`` variables. The former will be
processed for ``MP_QSTR_`` and ``MP_REGISTER_MODULE`` definitions, the latter
will not (e.g. helpers and library code that isn't MicroPython-specific).
- These paths should include your expaned copy of ``$(USERMOD_DIR)``, e.g.::
+ These paths should include your expanded copy of ``$(USERMOD_DIR)``, e.g.::
SRC_USERMOD_C += $(EXAMPLE_MOD_DIR)/modexample.c
SRC_USERMOD_LIB_C += $(EXAMPLE_MOD_DIR)/utils/algorithm.c