summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <elliot@mysql.com>2006-05-02 09:13:58 -0400
committerunknown <elliot@mysql.com>2006-05-02 09:13:58 -0400
commite8770dfe76a1244fccf2ca55e44e5b7b4eb5875d (patch)
treef3680048faf0964f267bf521984c33a1343545f1 /include
parent79cc1546b23f757266dc2f4ed67317865c9d0f2f (diff)
downloadmariadb-git-e8770dfe76a1244fccf2ca55e44e5b7b4eb5875d.tar.gz
Fix spelling in comments as requested by Osku
This will make charset code easier to understand include/m_ctype.h: Fix spelling in comments mysql-test/t/cast.test: Fix spelling in comments mysql-test/t/query_cache.test: Fix spelling in comments sql/sql_string.cc: Fix spelling in comments strings/CHARSET_INFO.txt: Fix spelling in comments
Diffstat (limited to 'include')
-rw-r--r--include/m_ctype.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h
index 913272b2a11..40cadad0017 100644
--- a/include/m_ctype.h
+++ b/include/m_ctype.h
@@ -176,7 +176,7 @@ typedef struct my_charset_handler_st
uint (*lengthsp)(struct charset_info_st *, const char *ptr, uint length);
uint (*numcells)(struct charset_info_st *, const char *b, const char *e);
- /* Unicode convertion */
+ /* Unicode conversion */
int (*mb_wc)(struct charset_info_st *cs,my_wc_t *wc,
const unsigned char *s,const unsigned char *e);
int (*wc_mb)(struct charset_info_st *cs,my_wc_t wc,
@@ -186,7 +186,7 @@ typedef struct my_charset_handler_st
int (*ctype)(struct charset_info_st *cs, int *ctype,
const unsigned char *s, const unsigned char *e);
- /* Functions for case and sort convertion */
+ /* Functions for case and sort conversion */
void (*caseup_str)(struct charset_info_st *, char *);
void (*casedn_str)(struct charset_info_st *, char *);
uint (*caseup)(struct charset_info_st *, char *src, uint srclen,
@@ -204,7 +204,7 @@ typedef struct my_charset_handler_st
void (*fill)(struct charset_info_st *, char *to, uint len, int fill);
- /* String-to-number convertion routines */
+ /* String-to-number conversion routines */
long (*strntol)(struct charset_info_st *, const char *s, uint l,
int base, char **e, int *err);
ulong (*strntoul)(struct charset_info_st *, const char *s, uint l,