Skip to content

Commit 1c13d30

Browse files
committed
Capitalize first word
Co-authored-by: Nikita Popov <[email protected]> Fix P
1 parent 4dda04a commit 1c13d30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/mysqli/mysqli_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ PHP_FUNCTION(mysqli_get_client_info)
13291329
}
13301330

13311331
if (ZEND_NUM_ARGS()) {
1332-
php_error_docref(NULL, E_DEPRECATED, "passing connection object as an argument is deprecated");
1332+
php_error_docref(NULL, E_DEPRECATED, "Passing connection object as an argument is deprecated");
13331333
}
13341334
}
13351335

ext/mysqli/tests/mysqli_get_info_deprecations.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ print "done!";
2626
Deprecated: Method mysqli::get_client_info() is deprecated in %s
2727
client_info = '%s'
2828

29-
Deprecated: mysqli_get_client_info(): passing connection object as an argument is deprecated in %s
29+
Deprecated: mysqli_get_client_info(): Passing connection object as an argument is deprecated in %s
3030
client_info = '%s'
3131
done!

0 commit comments

Comments
 (0)