We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A substring of the word is inappropriately censored.
When censoring the string "button", the profanity detector censors a substring which results in "****on".
"button"
"****on"
When censoring the string "button", the profanity detector should identify the word as a false positive and leave it unchanged.
"github.com/TwiN/go-away"
"fmt"
goaway.Censor
fmt.Println
v1.6.12
Reference to a similar issue: #66 PR for a fix: #68
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
A substring of the word is inappropriately censored.
What do you see?
When censoring the string
"button"
, the profanity detector censors a substring which results in"****on"
.What do you expect to see?
When censoring the string
"button"
, the profanity detector should identify the word as a false positive and leave it unchanged.List the steps that must be taken to reproduce this issue
"github.com/TwiN/go-away"
library"fmt"
package from the Go standard library"github.com/TwiN/go-away"
librarygoaway.Censor
function on the string"button"
and use thefmt.Println
function to output it to the terminalVersion
v1.6.12
Additional information
Reference to a similar issue: #66
PR for a fix: #68
The text was updated successfully, but these errors were encountered: