Improve example usage info

This commit is contained in:
2025-05-08 18:52:54 +00:00
parent e7f041bb0a
commit d4845e53ad
+1 -1
View File
@@ -81,7 +81,7 @@ func main() {
encBytes := wrappers.Encrypt([]byte(os.Args[2]), []byte(os.Args[3]))
os.WriteFile(outputFile, encBytes, 0600)
default:
fmt.Println("Usage: rcw [init <passwd>] | [enc <text> <passwd>] | [dec] | [<passwd>]")
fmt.Println("Usage: rcw [init <passwd>] | [enc <text> <passwd>] | dec | <passwd>")
}
}