diff options
| author | Andi Gutmans <andi@php.net> | 2005-03-24 01:11:35 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2005-03-24 01:11:35 +0000 |
| commit | 1b12c6b3621b1242c8daee6806f69b3b0bb43692 (patch) | |
| tree | 193a9bbc79d7476e83328325556458d95687773a | |
| parent | cb49e8b1ce02137e060150147e67bea67f8dfca5 (diff) | |
| download | php-git-1b12c6b3621b1242c8daee6806f69b3b0bb43692.tar.gz | |
- Fix typos
| -rw-r--r-- | main/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.c b/main/main.c index 28dbdc265a..8e491251bc 100644 --- a/main/main.c +++ b/main/main.c @@ -662,11 +662,11 @@ static void php_error_cb(int type, const char *error_filename, const uint error_ break; case E_NOTICE: case E_USER_NOTICE: - /* notices are no errors and are not treated as such like E_WARNIGNS */ + /* notices are no errors and are not treated as such like E_WARNINGS */ break; default: /* throw an exception if we are in EH_THROW mode - * but DO NOT overwrite a pending excepption + * but DO NOT overwrite a pending exception */ if (PG(error_handling) == EH_THROW && !EG(exception)) { zend_throw_exception(PG(exception_class), buffer, 0 TSRMLS_CC); |
