summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-13 10:50:33 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-13 10:50:33 -0400
commit05957fcd3ecdb6ba564aefc1b7d4b51a5b14c4b6 (patch)
tree5e9b5f4318a27dae9a8a4f72c22d5aec14a573dc /src
parentb5350c2fda462792c5e79eaa5afe31ce86c05d81 (diff)
fix typo in description
Diffstat (limited to 'src')
-rw-r--r--src/time/gmtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time/gmtime.c b/src/time/gmtime.c
index a193fb99..4953d2f0 100644
--- a/src/time/gmtime.c
+++ b/src/time/gmtime.c
@@ -11,7 +11,7 @@
# define ISLEAPYEAR(y) ((y) % 4L == 0 && ((y) % 100L != 0 || (y) % 400L == 0))
# define EPOCH_YEAR (70)
-/** convert arithmetic time to borken down time **/
+/** convert arithmetic time to broken down time **/
struct tm * gmtime(const time_t * timer)
{