1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix typo in output string: inital -> initial

This commit is contained in:
Otto Kekäläinen
2020-03-04 18:18:36 +02:00
parent 6a0c8ff2e5
commit c0d5d7d15b
3 changed files with 4 additions and 4 deletions

View File

@@ -2543,7 +2543,7 @@ static int test_pure_coverage(MYSQL *mysql)
FAIL_IF(!rc, "Error expected");
mysql_stmt_close(stmt);
/* Query without params and result should allow to bind 0 arrays */
/* Query without params and result should allow one to bind 0 arrays */
stmt= mysql_stmt_init(mysql);
FAIL_IF(!stmt, mysql_error(mysql));
rc= mysql_stmt_prepare(stmt, SL("insert into test_pure(c2) values(10)"));