summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/input.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 53b12693..85168cad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -542,7 +542,7 @@ You can see the API documentation here: https://docs.rs/bat/
- Added `BAT_CONFIG_PATH` environment variable to set a non-default path for `bat`s configuration file, see #375 (@deg4uss3r)
-- Allow for multiple occurences of `--style` to allow for the configuration
+- Allow for multiple occurrences of `--style` to allow for the configuration
of styles from the config file, see #367 (@sindreij)
- Allow for multiple `--line-range` arguments, see #23
diff --git a/src/input.rs b/src/input.rs
index 0eb670b0..2392c507 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -211,7 +211,7 @@ impl<'a> Input<'a> {
)
.into());
}
- file = input_identifier.into_inner().expect("The file was lost in the clircle::Identifier, this should not have happended...");
+ file = input_identifier.into_inner().expect("The file was lost in the clircle::Identifier, this should not have happened...");
}
InputReader::new(BufReader::new(file))