Skip to content

Commit

Permalink
chore: fix invalid aliases for Morse decode
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoVeille committed May 27, 2024
1 parent 0969727 commit d1576b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processors/morse.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (p MorseCodeDecode) Name() string {
}

func (p MorseCodeDecode) Alias() []string {
return []string{"morse-enc", "morse-encode", "morse-code-encode", "morse-code-enc"}
return []string{"morse-dec", "morse-decode", "morse-code-decode", "morse-code-dec"}
}

func (p MorseCodeDecode) Transform(data []byte, _ ...Flag) (string, error) {
Expand Down

0 comments on commit d1576b6

Please sign in to comment.