Skip to content
New issue

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

fix typo #8

Merged
merged 1 commit into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/decompress.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func newDecompressCmd(config *Config) *cobra.Command {
var decompressCmd = &cobra.Command{
Use: "decompress",
Short: "decompress input using lz-string",
Long: `Decompress input using lz-string(compatible 1.4.4). If no file is specified, input is rom standard input. Input format is depends on the compression method. Output format is UTF-8 string`,
Long: `Decompress input using lz-string(compatible 1.4.4). If no file is specified, input is from standard input. Input format is depends on the compression method. Output format is UTF-8 string`,
Example: " go-lz-string decompress input.txt -m base64 -o output.txt",
Args: cobra.MaximumNArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
2 changes: 1 addition & 1 deletion cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func newRootCmd() *cobra.Command {
Use: "go-lz-string",
Short: "compress/decompress using lz-string",
Long: `go-lz-string is a CLI application to compress/decompress using lz-string algorithm[https://github.com/pieroxy/lz-string].
This application implements algorithm is compatible with [email protected]`,
This application implements algorithm is compatible with [email protected]`,
}
config := &Config{
In: os.Stdin,
Expand Down