diff --git a/Cargo.lock b/Cargo.lock index 6c073609..87de5ad5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "human_name" -version = "0.2.0" +version = "0.3.0" dependencies = [ "itertools 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "phf 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/src/comparison.rs b/src/comparison.rs index 5d3c47fc..589329ea 100644 --- a/src/comparison.rs +++ b/src/comparison.rs @@ -38,8 +38,8 @@ impl Name { /// names and/or suffixes are present in both names, they must match as well. /// /// Transliterates everything to ASCII before comparison using the naive - /// algorithm of unidecode (which ignores context), and ignores case, accents - /// and combining marks. + /// algorithm of [unidecode](https://github.com/chowdhurya/rust-unidecode/) + /// (which ignores context), and ignores case, accents and combining marks. /// /// In the case of given and middle names, allows one name to be a prefix of /// the other, without requiring the prefix end at a word boundary as we do