Skip to content

Commit

Permalink
szip: Fix application name and crates.io links
Browse files Browse the repository at this point in the history
I think these were missed in a earlier rename, and I keep noticing them,
so I figure I should submit a PR which fixes them.
  • Loading branch information
emk authored and BurntSushi committed Mar 20, 2017
1 parent d142c56 commit 8f18801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions szip/Cargo.toml
Expand Up @@ -6,8 +6,8 @@ description = """
A fast command line tool for snappy compression and decompression.
"""
documentation = "https://docs.rs/snap"
homepage = "https://github.com/BurntSushi/snap"
repository = "https://github.com/BurntSushi/snap"
homepage = "https://github.com/BurntSushi/rust-snappy"
repository = "https://github.com/BurntSushi/rust-snappy"
keywords = ["snappy", "compress", "compression", "decompress", "decompression"]
license = "BSD-3-Clause"

Expand Down
6 changes: 3 additions & 3 deletions szip/src/main.rs
Expand Up @@ -29,9 +29,9 @@ Note that this requires reading the entire input/output into memory. In
general, you shouldn't use this flag unless you have a specific need to.
Usage:
snappy [options] [<file> ...]
snappy --help
snappy --version
szip [options] [<file> ...]
szip --help
szip --version
Options:
-d, --decompress Decompress files (default is compression).
Expand Down

0 comments on commit 8f18801

Please sign in to comment.