Fix some misspellings

This commit is contained in:
Gabriel Caruso 2018-08-09 23:19:55 -03:00 committed by Christoph M. Becker
parent 9ea7d259ef
commit 84b195d9fc
95 changed files with 143 additions and 143 deletions

View file

@ -1055,7 +1055,7 @@ static int _php_pgsql_detect_identifier_escape(const char *identifier, size_t le
if (len <= 2) {
return FAILURE;
}
/* Detect double qoutes */
/* Detect double quotes */
if (identifier[0] == '"' && identifier[len-1] == '"') {
size_t i;