summaryrefslogtreecommitdiff
path: root/libmysql
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-08-10 01:16:19 -0700
committerunknown <konstantin@mysql.com>2004-08-10 01:16:19 -0700
commite1ae7e48602b76de09bb18da0b4695ae5a159426 (patch)
treeb71a67f5ef6ea003bd781daa25e975346187001c /libmysql
parent362b1fb7f9d5de2a46215fd0a7d192175553c81a (diff)
downloadmariadb-git-e1ae7e48602b76de09bb18da0b4695ae5a159426.tar.gz
Fixing typos in big comment (libmysql):
you need to check in to find out another couple of typos libmysql/libmysql.c: Typos in comments fixed.
Diffstat (limited to 'libmysql')
-rw-r--r--libmysql/libmysql.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c
index 08916b88cc8..3a1d0d4c9fc 100644
--- a/libmysql/libmysql.c
+++ b/libmysql/libmysql.c
@@ -2801,7 +2801,7 @@ static my_bool int_is_null_false= 0;
bind structure before setting it's members. This will both shorten
your application code and make it robust to future extensions of
MYSQL_BIND structure.
- Then you need to assign typecode of your applicatoin buffer to
+ Then you need to assign typecode of your application buffer to
MYSQL_BIND::buffer_type. The following typecodes with their
correspondence to C language types are supported:
MYSQL_TYPE_TINY for 8-bit integer variables. Normally it's
@@ -2932,8 +2932,8 @@ static my_bool int_is_null_false= 0;
The function copies given bind array to internal storage of the
statement, and sets up typecode-specific handlers to perform
serialization of bound data. This means that although you don't need
- to call this routine after each assignement to bind buffers, you
- need to call eat each time you change parameter typecodes, or other
+ to call this routine after each assignment to bind buffers, you
+ need to call it each time you change parameter typecodes, or other
members of MYSQL_BIND array.
This is a pure local call. Data types of client buffers are sent
along with buffers' data at first execution of the statement.