summaryrefslogtreecommitdiffstatshomepage
path: root/unix
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-05-29 10:08:14 +0300
committerVille Skyttä <ville.skytta@iki.fi>2017-05-29 11:36:05 +0300
commitca16c3821053e5bf2b87aeb10007f73f31dc1eac (patch)
tree28b394ba7ef2e107c5fb3112c7ba97f01b6915f1 /unix
parente5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff)
downloadmicropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.tar.gz
micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.zip
various: Spelling fixes
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile2
-rw-r--r--unix/modsocket.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 837ddf2b78..006bce0ef2 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -262,7 +262,7 @@ coverage_test: coverage
gcov -o build-coverage/extmod ../extmod/*.c
# 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/unix/modsocket.c b/unix/modsocket.c
index 9ca04b88b4..c7be6461e8 100644
--- a/unix/modsocket.c
+++ b/unix/modsocket.c
@@ -58,7 +58,7 @@
from socket_more_funcs2 import *
-------------------
I.e. this module should stay lean, and more functions (if needed)
- should be add to seperate modules (C or Python level).
+ should be add to separate modules (C or Python level).
*/
#define MICROPY_SOCKET_EXTRA (0)