Skip to content
Merged
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
4 changes: 2 additions & 2 deletions check_diff/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl FromStr for Edition {

#[derive(Debug, Clone, Copy)]
pub enum StyleEdition {
// rustfmt style_edition 2021. Also equivaluent to 2015 and 2018.
// rustfmt style_edition 2021. Also equivalent to 2015 and 2018.
Edition2021,
// rustfmt style_edition 2024
Edition2024,
Expand Down Expand Up @@ -82,7 +82,7 @@ impl FromStr for StyleEdition {
pub enum FormatCodeError {
// IO Error when running code formatter
Io(std::io::Error),
/// An error occured that prevents code formatting. For example, a parse error.
/// An error occurred that prevents code formatting. For example, a parse error.
CodeNotFormatted(Vec<u8>),
}

Expand Down
Loading