From 34cbe5746d9f0bc72759e43e066746b5c5d895db Mon Sep 17 00:00:00 2001 From: Anton Hermann Date: Mon, 22 Nov 2021 01:40:42 +0100 Subject: [PATCH] Fix 40cee89: include review --- Cargo.toml | 2 +- README.md | 2 +- src/list.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 06f52a8..dc49d2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" repository = "https://github.com/ouch-org/ouch" license = "MIT" keywords = ["decompression", "compression", "zip", "tar", "gzip", "accessibility", "a11y"] -categories = ["command-line-utilities", "compression", "encoding", "accessibility"] +categories = ["command-line-utilities", "compression", "encoding"] description = "A command-line utility for easily compressing and decompressing files and directories." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 2c9bae0..765af0c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ # Features 1. Easy to use. -2. Accessibility (A11Y) mode via `--accessibility` or env var `ACCESSIBILITY` +2. Accessibility mode (A11Y) via `--accessibility` or `ACCESSIBILITY` env var (see [wiki page](https://github.com/ouch-org/ouch/wiki/Accessibility)). 3. Automatic formats detection. 4. Same usage syntax for all formats. 5. Uses encoding and decoding streams to improve performance. diff --git a/src/list.rs b/src/list.rs index ce75970..1549b30 100644 --- a/src/list.rs +++ b/src/list.rs @@ -23,7 +23,7 @@ pub struct FileInArchive { /// Actually print the files pub fn list_files(archive: &Path, files: Vec, list_options: ListOptions) { - println!("Archiv: {}", archive.display()); + println!("Archive: {}", archive.display()); if list_options.tree { let tree: Tree = files.into_iter().collect(); tree.print();