diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-25 05:38:50 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-07-25 11:57:11 +0200 |
commit | a5e80b22e11c2db7fd5ff07b5b7a28f80745e89b (patch) | |
tree | 31d5964b5ceeb8ca1f81511f08bc4b89d872e8a7 /ext/pgsql | |
parent | a29a800cb0749c19a99a7019219c44b5415b6a78 (diff) | |
download | php-git-a5e80b22e11c2db7fd5ff07b5b7a28f80745e89b.tar.gz |
Fix typos in code comments
Diffstat (limited to 'ext/pgsql')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 36cdeac4e0..5b613a4328 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1093,7 +1093,7 @@ static PHP_GINIT_FUNCTION(pgsql) ZEND_TSRMLS_CACHE_UPDATE(); #endif memset(pgsql_globals, 0, sizeof(zend_pgsql_globals)); - /* Initilize notice message hash at MINIT only */ + /* Initialize notice message hash at MINIT only */ zend_hash_init_ex(&pgsql_globals->notices, 0, NULL, ZVAL_PTR_DTOR, 1, 0); } /* }}} */ |