Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin271 committed Jan 20, 2024
1 parent dd4536b commit 05b1d9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ _If you're wondering 'Is this relevant to me?' Then the answer is probably no
- [ ] Check for unused dependencies
- `$ cargo +nightly udeps`
- [ ] Bump `version` in `Cargo.toml`
- [ ] Propogate the change to `Cargo.lock`
- [ ] Propagate the change to `Cargo.lock`
- `$ cargo check -p inlyne`
- [ ] Optional: If making a breaking release update the `example.png` link in
the README to point to the appropriate release branch
Expand Down
2 changes: 1 addition & 1 deletion src/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ impl<'de> Deserialize<'de> for SyntaxTheme {

match untagged {
// Unfortunately #[serde(untagged)] uses private internals to reuse a deserializer
// mutliple times. We can't so now we have to fall back to other means to give a good
// multiple times. We can't so now we have to fall back to other means to give a good
// error message ;-;
Untagged::Defaults(theme_name) => match ThemeDefaults::from_kebab(&theme_name) {
Some(theme) => Ok(Self::Defaults(theme)),
Expand Down
2 changes: 1 addition & 1 deletion src/interpreter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl HtmlInterpreter {

for md_string in receiver {
tracing::debug!(
"Recieved markdown for interpretation: {} bytes",
"Received markdown for interpretation: {} bytes",
md_string.len()
);

Expand Down

0 comments on commit 05b1d9e

Please sign in to comment.