summaryrefslogtreecommitdiff
path: root/lib/timeutils/timeutils.c
diff options
context:
space:
mode:
authorGlenn Ruben Bakke <glennbakke@gmail.com>2017-06-03 23:23:08 +0200
committerGlenn Ruben Bakke <glennbakke@gmail.com>2017-06-03 23:23:08 +0200
commit227eeb1408cd442e896c33fd82d1d709ee9c95cd (patch)
tree7dfd4bf6894d59c299107960c47bace77cf166df /lib/timeutils/timeutils.c
parentd83c4fa130692ed9dbdfbe1bb8903da5721e7734 (diff)
parenta0dbbbebb8c0286e00ae06751b0173cbca4ec801 (diff)
Merge remote-tracking branch 'upstream/master' into nrf5_no_sdk
Diffstat (limited to 'lib/timeutils/timeutils.c')
-rw-r--r--lib/timeutils/timeutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeutils/timeutils.c b/lib/timeutils/timeutils.c
index 0af39a295..06915f25a 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.
//