diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-05-03 18:28:11 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-05-03 18:28:11 +0100 |
commit | 86a9a8863270bad2fbaae75149e5f5e94e4160a1 (patch) | |
tree | 9baa5d28a47239af672d51e50884591b7e4dbb05 | |
parent | e9ff5570c3b3a0af8937cf5a25012551b018c1a4 (diff) | |
download | micropython-86a9a8863270bad2fbaae75149e5f5e94e4160a1.tar.gz micropython-86a9a8863270bad2fbaae75149e5f5e94e4160a1.zip |
Fix incorrect fix ;)
-rw-r--r-- | stmhal/rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/rtc.c b/stmhal/rtc.c index a8ce06f42c..ea7aa789ec 100644 --- a/stmhal/rtc.c +++ b/stmhal/rtc.c @@ -260,7 +260,7 @@ MP_DEFINE_CONST_FUN_OBJ_1(pyb_rtc_info_obj, pyb_rtc_info); /// /// `weekday` is 1-7 for Monday through Sunday. /// -/// `subseconds` is a free-running timer and counts down from 255 to 0, rolls around many times a second. +/// `subseconds` counts down from 255 to 0 mp_obj_t pyb_rtc_datetime(uint n_args, const mp_obj_t *args) { if (n_args == 1) { // get date and time |