diff options
author | Samuelson <59143578+TheNameIsSamSamuelson@users.noreply.github.com> | 2021-01-09 11:33:07 -0300 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-01-30 15:20:44 +1100 |
commit | 407df82f813d7a8d522b5b43e39f91816dea26a6 (patch) | |
tree | 0da0b0aa0a88fa031f5d22747211216be05e491c /docs/develop | |
parent | cb30928ac8da931f905d1c14468498d21108933a (diff) |
docs/develop/natmod: Fix a small typo, con->can.
Diffstat (limited to 'docs/develop')
-rw-r--r-- | docs/develop/natmod.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/develop/natmod.rst b/docs/develop/natmod.rst index a4c188719..8ffe49591 100644 --- a/docs/develop/natmod.rst +++ b/docs/develop/natmod.rst @@ -202,7 +202,7 @@ Module usage in MicroPython Once the module is built there should be a file called ``factorial.mpy``. Copy this so it is accessible on the filesystem of your MicroPython system and can be -found in the import path. The module con now be accessed in Python just like any +found in the import path. The module can now be accessed in Python just like any other module, for example:: import factorial |