summaryrefslogtreecommitdiff
path: root/sapi/phpdbg
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-09-20 10:41:10 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-20 19:41:47 +0200
commite950ca13ea2e8f012ded007ac1251eea01269542 (patch)
tree3c22f2303d1d0ec2edf7e2fa1f1a495c7b2ae9e9 /sapi/phpdbg
parentc0f8cc1904106753fcb8cc4ecfef0cf154479ad9 (diff)
downloadphp-git-e950ca13ea2e8f012ded007ac1251eea01269542.tar.gz
Consolidate the usage of "either" and "one of" in error messages
Closes GH-6173
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r--sapi/phpdbg/phpdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index 54d06a84c7..efd2270601 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -438,7 +438,7 @@ PHP_FUNCTION(phpdbg_color)
break;
default:
- zend_argument_value_error(1, "must be either PHPDBG_COLOR_PROMPT, PHPDBG_COLOR_NOTICE, or PHPDBG_COLOR_ERROR");
+ zend_argument_value_error(1, "must be one of PHPDBG_COLOR_PROMPT, PHPDBG_COLOR_NOTICE, or PHPDBG_COLOR_ERROR");
}
} /* }}} */