Commit 5375e97f4a3 for php.net

commit 5375e97f4a3f9e967d33529994ce485bb64e3d7b
Author: Weilin Du <108666168+LamentXU123@users.noreply.github.com>
Date:   Thu Mar 26 00:12:22 2026 +0800

    [skip ci] Fix typos in ext/dba/libinifile/inifile.c

diff --git a/ext/dba/libinifile/inifile.c b/ext/dba/libinifile/inifile.c
index c5467396d4b..6221c7f7a6e 100644
--- a/ext/dba/libinifile/inifile.c
+++ b/ext/dba/libinifile/inifile.c
@@ -249,7 +249,7 @@ val_type inifile_fetch(inifile *dba, const key_type *key, int skip) {
 		ln.key.group = estrdup(dba->next.key.group);
 	} else {
 		/* specific instance or not same key -> restart search */
-		/* the slow way: restart and seacrch */
+		/* the slow way: restart and search */
 		php_stream_rewind(dba->fp);
 		inifile_line_free(&dba->next);
 	}
@@ -471,7 +471,7 @@ static int inifile_delete_replace_append(inifile *dba, const key_type *key, cons
 	 * 8) Append temporary stream
 	 */

-	assert(!append || (key->name && value)); /* missuse */
+	assert(!append || (key->name && value)); /* misuse */

 	/* 1 - 3 */
 	inifile_find_group(dba, key, &pos_grp_start);