mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-05 02:55:31 +00:00
fix typos
This commit is contained in:
parent
bef3e9e2fa
commit
fe464213b3
@ -99,7 +99,7 @@ Categories Used:
|
||||
- Optimize `strip_cur_dir` [\#167](https://github.com/ouch-org/ouch/pull/167) ([vrmiguel](https://github.com/vrmiguel))
|
||||
- Improve zip errors when paths are not utf8 valid [\#181](https://github.com/ouch-org/ouch/pull/181) ([marcospb19](https://github.com/marcospb19))
|
||||
- Simplify/optimize several file inferring functions [\#204](https://github.com/ouch-org/ouch/pull/204) ([vrmiguel](https://github.com/vrmiguel))
|
||||
- List command: print file immediatly after it is processed [\#225](https://github.com/ouch-org/ouch/pull/225) ([sigmaSd](https://github.com/sigmaSd))
|
||||
- List command: print file immediately after it is processed [\#225](https://github.com/ouch-org/ouch/pull/225) ([sigmaSd](https://github.com/sigmaSd))
|
||||
- Use `Cow<'static, str>` in `FinalError` [\#246](https://github.com/ouch-org/ouch/pull/246) ([vrmiguel](https://github.com/vrmiguel))
|
||||
- Don't allocate when possible in `to_utf`, `nice_directory_display` [\#249](https://github.com/ouch-org/ouch/pull/249) ([vrmiguel](https://github.com/vrmiguel))
|
||||
- Allow overriding the completions output directory [\#251]](https://github.com/ouch-org/ouch/pull/251) ([jcgruenhage](https://github.com/jcgruenhage))
|
||||
@ -174,14 +174,14 @@ Categories Used:
|
||||
|
||||
- Empty folders are ignored in archive compression formats [\#41](https://github.com/ouch-org/ouch/issues/41) ([GabrielSimonetto](https://github.com/GabrielSimonetto))
|
||||
- fix macOS executable paths [\#69](https://github.com/ouch-org/ouch/pull/69) ([vrmiguel](https://github.com/vrmiguel))
|
||||
- Print the format type when the format is in an incorrent position [\#84](https://github.com/ouch-org/ouch/pull/84) ([dcariotti](https://github.com/dcariotti))
|
||||
- Print the format type when the format is in an incorrect position [\#84](https://github.com/ouch-org/ouch/pull/84) ([dcariotti](https://github.com/dcariotti))
|
||||
- Compressing a single file to a single format that's not `tar` or `zip` panics [\#87](https://github.com/ouch-org/ouch/issues/87) & [\#89](https://github.com/ouch-org/ouch/pull/89) ([marcospb19](https://github.com/marcospb19))
|
||||
- Compression flag `--output` not working with single file compression [\#90](https://github.com/ouch-org/ouch/issues/90) & [\#93](https://github.com/ouch-org/ouch/pull/93) ([figsoda](https://github.com/figsoda))
|
||||
- Fix NO_COLOR issues, remove some dead code [\#66](https://github.com/ouch-org/ouch/issues/66), [\#62](https://github.com/ouch-org/ouch/issues/62), & [\#95](https://github.com/ouch-org/ouch/pull/95) ([figsoda](https://github.com/figsoda))
|
||||
- Add proper error message when using conflicting flags \(e.g. `--yes --no`\) [\#55](https://github.com/ouch-org/ouch/issues/55) & [\#99](https://github.com/ouch-org/ouch/pull/99) ([SpyrosRoum](https://github.com/SpyrosRoum))
|
||||
- Fix wrong archive format detection patterns [\#125](https://github.com/ouch-org/ouch/pull/125) ([SpyrosRoum](https://github.com/SpyrosRoum))
|
||||
- Decompressing file without extension gives bad error message [\#137](https://github.com/ouch-org/ouch/issues/137) ([marcospb19](https://github.com/marcospb19))
|
||||
- Fix decompression overwritting files without asking and failing on directories [\#141](https://github.com/ouch-org/ouch/pull/141) ([SpyrosRoum](https://github.com/SpyrosRoum))
|
||||
- Fix decompression overwriting files without asking and failing on directories [\#141](https://github.com/ouch-org/ouch/pull/141) ([SpyrosRoum](https://github.com/SpyrosRoum))
|
||||
|
||||
### Improvements
|
||||
|
||||
|
@ -366,7 +366,7 @@ fn check_mime_type(
|
||||
// File with no extension
|
||||
// Try to detect it automatically and prompt the user about it
|
||||
if let Some(detected_format) = try_infer_extension(path) {
|
||||
// Infering the file extension can have unpredicted consequences (e.g. the user just
|
||||
// Inferring the file extension can have unpredicted consequences (e.g. the user just
|
||||
// mistyped, ...) which we should always inform the user about.
|
||||
info!(
|
||||
accessible,
|
||||
|
@ -1,6 +1,6 @@
|
||||
//! Error types definitions.
|
||||
//!
|
||||
//! All usage errors will pass throught the Error enum, a lot of them in the Error::Custom.
|
||||
//! All usage errors will pass through the Error enum, a lot of them in the Error::Custom.
|
||||
|
||||
use std::{
|
||||
borrow::Cow,
|
||||
@ -73,7 +73,7 @@ impl Display for FinalError {
|
||||
if !self.hints.is_empty() {
|
||||
// Separate by one blank line.
|
||||
writeln!(f)?;
|
||||
// to reduce redundant output for text-to-speach systems, braille
|
||||
// to reduce redundant output for text-to-speech systems, braille
|
||||
// displays and so on, only print "hints" once in ACCESSIBLE mode
|
||||
if is_running_in_accessible_mode() {
|
||||
write!(f, "\n{}hints:{}", *GREEN, *RESET)?;
|
||||
|
@ -5,14 +5,14 @@
|
||||
/// There are essentially two different versions of the `info!()` macro:
|
||||
/// - `info!(accessible, ...)` should only be used for short, important
|
||||
/// information which is expected to be useful for e.g. blind users whose
|
||||
/// text-to-speach systems read out every output line, which is why we
|
||||
/// text-to-speech systems read out every output line, which is why we
|
||||
/// should reduce nonessential output to a minimum when running in
|
||||
/// ACCESSIBLE mode
|
||||
/// - `info!(inaccessible, ...)` can be used more carelessly / for less
|
||||
/// important information. A seeing user can easily skim through more lines
|
||||
/// of output, so e.g. reporting every single processed file can be helpful,
|
||||
/// while it would generate long and hard to navigate text for blind people
|
||||
/// who have to have each line of output read to them aloud, whithout to
|
||||
/// who have to have each line of output read to them aloud, without to
|
||||
/// ability to skip some lines deemed not important like a seeing person would.
|
||||
#[macro_export]
|
||||
macro_rules! info {
|
||||
|
@ -80,7 +80,7 @@ pub fn assert_same_directory(x: impl Into<PathBuf>, y: impl Into<PathBuf>, prese
|
||||
|
||||
(x, y) => {
|
||||
panic!(
|
||||
"directories don't have the same number of entires\n left: `{:?}`,\n right: `{:?}`",
|
||||
"directories don't have the same number of entries\n left: `{:?}`,\n right: `{:?}`",
|
||||
x.map(|x| x.path()),
|
||||
y.map(|y| y.path()),
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user