Skip to content
Open
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 src/fs/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ impl<'dir> File<'dir> {
/// the current file. It does not perform any validation to check if the
/// file is actually a directory. To verify that, use `is_directory()`.
pub fn to_dir(&self) -> Dir {
trace!("read_dir: initializating dir from path");
trace!("read_dir: initializing dir from path");
Dir::new(self.path.clone())
}

Expand Down
2 changes: 1 addition & 1 deletion src/options/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub struct StyleOverride {
#[serde(alias = "strikethrough")]
pub is_strikethrough: Option<bool>,

/// Wether this style is always displayed starting with a reset code to clear any remaining style artifacts
/// Whether this style is always displayed starting with a reset code to clear any remaining style artifacts
#[serde(alias = "prefix_reset")]
pub prefix_with_reset: Option<bool>,
}
Expand Down
2 changes: 1 addition & 1 deletion src/options/vars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub static EZA_ICON_SPACING: &str = "EZA_ICON_SPACING";
pub static EXA_OVERRIDE_GIT: &str = "EXA_OVERRIDE_GIT";
pub static EZA_OVERRIDE_GIT: &str = "EZA_OVERRIDE_GIT";

/// Enviroment variable used to set the minimum luminance in `color_scale`. It's value
/// Environment variable used to set the minimum luminance in `color_scale`. It's value
/// can be between -100 and 100
pub static EXA_MIN_LUMINANCE: &str = "EXA_MIN_LUMINANCE";
pub static EZA_MIN_LUMINANCE: &str = "EZA_MIN_LUMINANCE";
Expand Down
2 changes: 1 addition & 1 deletion src/output/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ impl TimeType {
/// How display file flags.
#[derive(PartialEq, Eq, Debug, Default, Copy, Clone)]
pub enum FlagsFormat {
/// Display flags as comma seperated descriptions
/// Display flags as comma separated descriptions
#[default]
Long,
/// Display flags as single character abbreviations (Windows only)
Expand Down
Loading