]> granicus.if.org Git - php/commitdiff
Fix parameter name
authorChristoph M. Becker <cmbecker69@gmx.de>
Fri, 1 Jan 2021 16:46:40 +0000 (17:46 +0100)
committerChristoph M. Becker <cmbecker69@gmx.de>
Fri, 1 Jan 2021 22:04:28 +0000 (23:04 +0100)
Levenshtein is about insertion, replacement and deletion.

Closes GH-6560.

ext/standard/basic_functions.stub.php
ext/standard/basic_functions_arginfo.h

index 5d325515f7d1cd9ac8b95eb76fa265cd07e18a6f..7776e7765d8fef902bda393d1beb9625af6b2e6f 100755 (executable)
@@ -1012,7 +1012,7 @@ function iptcparse(string $iptc_block): array|false {}
 
 /* levenshtein.c */
 
-function levenshtein(string $string1, string $string2, int $insertion_cost = 1, int $repetition_cost = 1, int $deletion_cost = 1): int {}
+function levenshtein(string $string1, string $string2, int $insertion_cost = 1, int $replacement_cost = 1, int $deletion_cost = 1): int {}
 
 /* link.c */
 
index a5bf2cedad1cf397b402fc0a003416d94af28f4f..d19184fbe65271fb5a95fccb80042624af6870b6 100644 (file)
@@ -1,5 +1,5 @@
 /* This is a generated file, edit the .stub.php file instead.
- * Stub hash: 4edb7cad23ccb051dbe267b3979e98892607c98f */
+ * Stub hash: 21e54280829776de72313b96e38ad2aee60bd0ee */
 
 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_set_time_limit, 0, 1, _IS_BOOL, 0)
        ZEND_ARG_TYPE_INFO(0, seconds, IS_LONG, 0)
@@ -1554,7 +1554,7 @@ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_levenshtein, 0, 2, IS_LONG, 0)
        ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
        ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
        ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, insertion_cost, IS_LONG, 0, "1")
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, repetition_cost, IS_LONG, 0, "1")
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, replacement_cost, IS_LONG, 0, "1")
        ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, deletion_cost, IS_LONG, 0, "1")
 ZEND_END_ARG_INFO()