diff options
author | Veres Lajos <vlajos@gmail.com> | 2014-11-20 20:00:07 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-11-23 14:52:47 -0800 |
commit | 06fdf359e3217f795fded77e337d5417426b8d64 (patch) | |
tree | 9ebcbc2030b120df99450a30550bbdacdebabec4 /ext/date/lib/parse_tz.c | |
parent | 38229d13d14bb0bda736d52a9a4f25c121445692 (diff) | |
download | php-git-06fdf359e3217f795fded77e337d5417426b8d64.tar.gz |
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'ext/date/lib/parse_tz.c')
-rw-r--r-- | ext/date/lib/parse_tz.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/date/lib/parse_tz.c b/ext/date/lib/parse_tz.c index a503f9e01e..eb6d0af310 100644 --- a/ext/date/lib/parse_tz.c +++ b/ext/date/lib/parse_tz.c @@ -336,7 +336,7 @@ static ttinfo* fetch_timezone_offset(timelib_tzinfo *tz, timelib_sll ts, timelib { uint32_t i; - /* If there is no transistion time, we pick the first one, if that doesn't + /* If there is no transition time, we pick the first one, if that doesn't * exist we return NULL */ if (!tz->timecnt || !tz->trans) { *transition_time = 0; @@ -346,8 +346,8 @@ static ttinfo* fetch_timezone_offset(timelib_tzinfo *tz, timelib_sll ts, timelib return NULL; } - /* If the TS is lower than the first transistion time, then we scan over - * all the transistion times to find the first non-DST one, or the first + /* If the TS is lower than the first transition time, then we scan over + * all the transition times to find the first non-DST one, or the first * one in case there are only DST entries. Not sure which smartass came up * with this idea in the first though :) */ if (ts < tz->trans[0]) { |