summaryrefslogtreecommitdiff
path: root/ext/dba
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-01-19 08:50:48 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-01-19 18:28:43 +0100
commit99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94 (patch)
treeade7b04cac0600cb793393ce084ce34c11a2bb04 /ext/dba
parent7426e3b6a1a5a6e2890415cc1b64e8d74a6927a3 (diff)
downloadphp-git-99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94.tar.gz
Fix #78880 Another round
Diffstat (limited to 'ext/dba')
-rw-r--r--ext/dba/dba.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dba/dba.c b/ext/dba/dba.c
index 6c151fbba9..d407d2a8e7 100644
--- a/ext/dba/dba.c
+++ b/ext/dba/dba.c
@@ -1003,8 +1003,8 @@ PHP_FUNCTION(dba_fetch)
skip = 0;
}
} else if (!strcmp(info->hnd->name, "inifile")) {
- /* "-1" is compareable to 0 but allows a non restrictive
- * access which is fater. For example 'inifile' uses this
+ /* "-1" is comparable to 0 but allows a non restrictive
+ * access which is faster. For example 'inifile' uses this
* to allow faster access when the key was already found
* using firstkey/nextkey. However explicitly setting the
* value to 0 ensures the first value.