diff options
author | Damien George <damien.p.george@gmail.com> | 2020-05-16 15:00:46 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-05-16 15:00:46 +1000 |
commit | cae77daf003212684a84b1b3a331d45564a0c286 (patch) | |
tree | 42b147515d192dc004e82f5a4ef757b279469fe3 /docs/develop | |
parent | dd8db974d7c9e5bf54da1ca1383af674d6b7b27e (diff) |
docs/develop: Fix module/source name in Makefile of native example.
Diffstat (limited to 'docs/develop')
-rw-r--r-- | docs/develop/natmod.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/develop/natmod.rst b/docs/develop/natmod.rst index 251f21e9f..dc9f82e77 100644 --- a/docs/develop/natmod.rst +++ b/docs/develop/natmod.rst @@ -165,10 +165,10 @@ The file ``Makefile`` contains: MPY_DIR = ../../.. # Name of module - MOD = features0 + MOD = factorial # Source files (.c or .py) - SRC = features0.c + SRC = factorial.c # Architecture to build for (x86, x64, armv7m, xtensa, xtensawin) ARCH = x64 |