summaryrefslogtreecommitdiff
path: root/sql/time.cc
diff options
context:
space:
mode:
authorpaul@kite-hub.kitebird.com <>2004-06-03 11:52:54 -0500
committerpaul@kite-hub.kitebird.com <>2004-06-03 11:52:54 -0500
commit2f0ca1ce424a26f71d4b6ec85d890060ecb73c68 (patch)
treeb6459e6d651d238a8d518e834adcb05db8ffcf04 /sql/time.cc
parentdeaa73fe42ba8c430c52c7e31c65af05cb19da0e (diff)
downloadmariadb-git-2f0ca1ce424a26f71d4b6ec85d890060ecb73c68.tar.gz
Fix skipp -> skip once and for all.
(Note: This affects only comments, not variable names.)
Diffstat (limited to 'sql/time.cc')
-rw-r--r--sql/time.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/time.cc b/sql/time.cc
index 6d15fa184a1..992f1afc4af 100644
--- a/sql/time.cc
+++ b/sql/time.cc
@@ -745,7 +745,7 @@ bool str_to_time(const char *str,uint length,TIME *l_time)
for (value=0; str != end && my_isdigit(&my_charset_latin1,*str) ; str++)
value=value*10L + (long) (*str - '0');
- /* Skipp all space after 'days' */
+ /* Skip all space after 'days' */
end_of_days= str;
for (; str != end && my_isspace(&my_charset_latin1, str[0]) ; str++)
;