diff --git a/crates/typos-cli/tests/cmd/false-positives.toml b/crates/typos-cli/tests/cmd/false-positives.toml index 8f1381e..324f41d 100644 --- a/crates/typos-cli/tests/cmd/false-positives.toml +++ b/crates/typos-cli/tests/cmd/false-positives.toml @@ -1,12 +1,4 @@ bin.name = "typos" stdin = "" -stdout = """ -error: `ons` should be `owns` - --> ./README.md:1:5 - | -1 | add-ons should not be corrected to add-owns - | ^^^ - | -""" +stdout = "" stderr = "" -status = "failed" diff --git a/crates/typos-dict/assets/words.csv b/crates/typos-dict/assets/words.csv index 9ea43d6..b8b7253 100644 --- a/crates/typos-dict/assets/words.csv +++ b/crates/typos-dict/assets/words.csv @@ -33765,7 +33765,6 @@ onmipotent,omnipotent onmiscient,omniscient onoly,only onot,note,not -ons,owns onsalught,onslaught onself,oneself onservation,conservation,observation diff --git a/crates/typos-dict/src/dict_codegen.rs b/crates/typos-dict/src/dict_codegen.rs index 37b1815..7b3bbe9 100644 --- a/crates/typos-dict/src/dict_codegen.rs +++ b/crates/typos-dict/src/dict_codegen.rs @@ -66466,7 +66466,6 @@ pub static WORD_ON_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictg dictgen::InsensitiveStr::Ascii("miscient"), dictgen::InsensitiveStr::Ascii("oly"), dictgen::InsensitiveStr::Ascii("ot"), - dictgen::InsensitiveStr::Ascii("s"), dictgen::InsensitiveStr::Ascii("salught"), dictgen::InsensitiveStr::Ascii("self"), dictgen::InsensitiveStr::Ascii("servation"), @@ -66511,7 +66510,6 @@ pub static WORD_ON_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictg &["omniscient"], &["only"], &["note", "not"], - &["owns"], &["onslaught"], &["oneself"], &["conservation", "observation"],