diff options
author | Carlos Santos <unixmania@gmail.com> | 2020-05-31 12:25:51 -0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-06-06 18:05:24 +0200 |
commit | 11f2f2318d8ad209c85a302cc3e018dba1eb06cb (patch) | |
tree | 1a20c003a51e69ed2ac1c86afb0b29803dd924a0 | |
parent | 4227a537cecbbd6b0ed744b76653babf4145d0a5 (diff) |
docs: fix overwrite vs. override confusion in php-fpm.conf
overwrite: "to write on or over; cover with writing" [1]
override: "to take precedence over; preempt or supersede" [2]
1. https://www.dictionary.com/browse/overwrite
2. https://www.dictionary.com/browse/override
Signed-off-by: Carlos Santos <unixmania@gmail.com>
-rw-r--r-- | package/php/files/php-fpm.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/php/files/php-fpm.conf b/package/php/files/php-fpm.conf index 90b6be5ea..bf057ac93 100644 --- a/package/php/files/php-fpm.conf +++ b/package/php/files/php-fpm.conf @@ -359,7 +359,7 @@ chdir = / ;env[TEMP] = /tmp ; Additional php.ini defines, specific to this pool of workers. These settings -; overwrite the values previously defined in the php.ini. The directives are the +; override the values previously defined in the php.ini. The directives are the ; same as the PHP SAPI: ; php_value/php_flag - you can set classic ini defines which can ; be overwritten from PHP call 'ini_set'. @@ -369,7 +369,7 @@ chdir = / ; Defining 'extension' will load the corresponding shared extension from ; extension_dir. Defining 'disable_functions' or 'disable_classes' will not -; overwrite previously defined php.ini values, but will append the new value +; override previously defined php.ini values, but will append the new value ; instead. ; Note: path INI options can be relative and will be expanded with the prefix |