fix some typos in normalized Levenshtein distance
This commit is contained in:
parent
5e261b8078
commit
c31a2d96b5
|
@ -29,7 +29,7 @@ struct proc_string {
|
|||
size_t length;
|
||||
};
|
||||
|
||||
static inline proc_string convert_string(PyObject* py_str, char* err)
|
||||
static inline proc_string convert_string(PyObject* py_str, const char* err)
|
||||
{
|
||||
proc_string str = {0, NULL, 0};
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 04bd0adb1d6cebd0d5fec7ba984b6239d32ffe5a
|
||||
Subproject commit ba7854e559e5665a07c517d7e8282374809281ab
|
|
@ -3,6 +3,6 @@ rapid string matching library
|
|||
"""
|
||||
__author__ = "Max Bachmann"
|
||||
__license__ = "MIT"
|
||||
__version__ = "1.2.1"
|
||||
__version__ = "1.3.0"
|
||||
|
||||
from rapidfuzz import process, fuzz, utils, levenshtein, string_metric
|
||||
|
|
Loading…
Reference in New Issue