summaryrefslogtreecommitdiff
path: root/flood.go
diff options
context:
space:
mode:
Diffstat (limited to 'flood.go')
-rw-r--r--flood.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/flood.go b/flood.go
index 356ab89..21acb47 100644
--- a/flood.go
+++ b/flood.go
@@ -22,7 +22,7 @@ func Entropy(s string) (e float64) {
}
func Flood(s string) bool {
- if utf8.RuneCountInString(s) < 4 {
+ if utf8.RuneCountInString(s) <= 6 {
return false
}
if v := strings.Fields(s); len(v) >= 6 {