### False Positives The following shouldn't have been detected, but was: ``` ain't it really didn't (It turns out) honkey-tonk // I suppose honkey-tonk is not a bad word, but I don't really know I get lost ``` <!--- One false positive per line. --> ### Context I am using `rustrict` version `0.3.14` Code sample: ```rust let cases = [ "ain't it", "really didn't (It turns out)", "honkey-tonk", "I get lost", ]; cases.map(|case| { let (censored, typ) = rustrict::Censor::from_str(case) .with_censor_first_character_threshold(Type::ANY) .with_censor_threshold(Type::ANY) .censor_and_analyze(); println!( "{:?} {:?} {:#b} ({})", case, censored, typ, TypeWrapper(typ) ); }); ``` Outputs ```rust "ain't it" "ain'****" 0b10000000 (moderate sexual ๐ ) "really didn't (It turns out)" "really didn'***** turns out)" 0b10000000 (moderate sexual ๐ ) "honkey-tonk" "******-tonk" 0b10000 (moderate offensive ๐ ) "I get lost" "I ********" 0b10000000000 (moderate mean ๐ ) ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by vtvz and has received 5 comments.