Skip to content

Commit

Permalink
minor changes in cli/cli.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozef Reisinger committed Nov 18, 2021
1 parent f99b719 commit 0078103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (rs Results) PrintProbabilityMalicious() {
switch {
case rs.probabilityMalicious() >= 0.50:
msg += `🚫`
case rs.probabilityMalicious() >= 0.10:
case rs.probabilityMalicious() >= 0.15:
msg += `🤏`
default:
msg += `✅`
Expand Down

0 comments on commit 0078103

Please sign in to comment.