diff --git a/Cargo.toml b/Cargo.toml index 6524686..140e939 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicode-language" -version = "2.0.3" +version = "2.1.0" edition = "2021" build = "build.rs" license = "Apache-2.0" diff --git a/speakeasy b/speakeasy index 8629245..ffab3ef 160000 --- a/speakeasy +++ b/speakeasy @@ -1 +1 @@ -Subproject commit 8629245981f82b9cf297703d9a18daac0155b396 +Subproject commit ffab3efa15c7bdddede5753f66cf57ed40fbdc1c diff --git a/src/lib.rs b/src/lib.rs index 4c42efa..aa90627 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ pub struct Match { /// must not contain overlapping ranges and must be sorted in /// ascending order. /// * `threshold` - The minimum score a language must have to be -/// returned as a match. Value must be between 0 and 1. +/// returned as a match. Value must be between 0 and 1. /// /// Returns a vector of language matches. pub fn detect(codepoints: T, threshold: f64) -> Vec