diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-29 10:08:14 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2017-05-29 11:36:05 +0300 |
commit | ca16c3821053e5bf2b87aeb10007f73f31dc1eac (patch) | |
tree | 28b394ba7ef2e107c5fb3112c7ba97f01b6915f1 /examples/embedding | |
parent | e5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff) | |
download | micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.tar.gz micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.zip |
various: Spelling fixes
Diffstat (limited to 'examples/embedding')
-rw-r--r-- | examples/embedding/Makefile.upylib | 2 | ||||
-rw-r--r-- | examples/embedding/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/embedding/Makefile.upylib b/examples/embedding/Makefile.upylib index 873c0fd344..4663ad30ab 100644 --- a/examples/embedding/Makefile.upylib +++ b/examples/embedding/Makefile.upylib @@ -170,7 +170,7 @@ SRC_QSTR_AUTO_DEPS += include $(MPTOP)/py/mkrules.mk # Value of configure's --host= option (required for cross-compilation). -# Deduce it from CROSS_COMPILE by default, but can be overriden. +# Deduce it from CROSS_COMPILE by default, but can be overridden. ifneq ($(CROSS_COMPILE),) CROSS_COMPILE_HOST = --host=$(patsubst %-,%,$(CROSS_COMPILE)) else diff --git a/examples/embedding/README.md b/examples/embedding/README.md index 989ce1fc8f..804dfede6f 100644 --- a/examples/embedding/README.md +++ b/examples/embedding/README.md @@ -18,7 +18,7 @@ Building the example is as simple as running: It's worth to trace what's happening behind the scenes though: 1. As a first step, a MicroPython library is built. This is handled by a -seperate makefile, Makefile.upylib. It is more or less complex, but the +separate makefile, Makefile.upylib. It is more or less complex, but the good news is that you won't need to change anything in it, just use it as is, the main Makefile shows how. What may require editing though is a MicroPython configuration file. MicroPython is highly configurable, so |