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

Merge pull request #129 from ottok/3.1-fix-spelling

Fix typo in output string: inital -> initial
This commit is contained in:
Georg Richter
2020-03-11 08:25:59 +01:00
committed by GitHub
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)"));