summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-time/src
diff options
context:
space:
mode:
authorcremno <[email protected]>2014-03-04 22:07:47 +0100
committercremno <[email protected]>2014-03-05 16:53:41 +0100
commitf9c88e9c68efbd5dde0e3b106a9dc7c3c5a1df36 (patch)
treecb86c689b4595e4d2355977313c803869b19bfca /mrbgems/mruby-time/src
parentc0887971078c58a59a62b6460bd639ad261bc491 (diff)
downloadmruby-f9c88e9c68efbd5dde0e3b106a9dc7c3c5a1df36.tar.gz
mruby-f9c88e9c68efbd5dde0e3b106a9dc7c3c5a1df36.zip
mruby-time: fix two tiny typos in comments
Diffstat (limited to 'mrbgems/mruby-time/src')
-rw-r--r--mrbgems/mruby-time/src/time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c
index 499aaa423..55638f638 100644
--- a/mrbgems/mruby-time/src/time.c
+++ b/mrbgems/mruby-time/src/time.c
@@ -34,7 +34,7 @@
#endif
/* timegm(3) */
-/* mktime() creates tm structure for localtime; timegm() is for UTF time */
+/* mktime() creates tm structure for localtime; timegm() is for UTC time */
/* define following macro to use probably faster timegm() on the platform */
/* #define USE_SYSTEM_TIMEGM */
@@ -80,7 +80,7 @@ timegm(struct tm *tm)
}
#endif
-/* Since we are limited to using ISO C89, this implementation is based
+/* Since we are limited to using ISO C99, this implementation is based
* on time_t. That means the resolution of time is only precise to the
* second level. Also, there are only 2 timezones, namely UTC and LOCAL.
*/