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 /lib/timeutils/timeutils.c | |
parent | e5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff) | |
download | micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.tar.gz micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.zip |
various: Spelling fixes
Diffstat (limited to 'lib/timeutils/timeutils.c')
-rw-r--r-- | lib/timeutils/timeutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeutils/timeutils.c b/lib/timeutils/timeutils.c index 0af39a2958..06915f25ae 100644 --- a/lib/timeutils/timeutils.c +++ b/lib/timeutils/timeutils.c @@ -165,7 +165,7 @@ mp_uint_t timeutils_mktime(mp_uint_t year, mp_int_t month, mp_int_t mday, // // tm_tomorrow = list(time.localtime()) // tm_tomorrow[2] += 1 # Adds 1 to mday - // tomorrow = time.mktime(tm_tommorrow) + // tomorrow = time.mktime(tm_tomorrow) // // And not have to worry about all the weird overflows. // |