Skip to content

Commit

Permalink
Merge pull request #159 from jelmer/codespell
Browse files Browse the repository at this point in the history
Fix spelling errors
  • Loading branch information
jelmer authored Nov 15, 2024
2 parents d31c67f + 2b93646 commit 35e7bc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
level of experience, education, socioeconomic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards
Expand Down
2 changes: 1 addition & 1 deletion src/problems/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ impl Display for UnsupportedDebhelperCompatLevel {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(
f,
"Request debhlper compat level {} lower than supported {}",
"Request debhelper compat level {} lower than supported {}",
self.requested, self.oldest_supported
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/sbuild.rs
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ pub fn strip_build_tail<'a>(

let mut interesting_lines: &'_ [&'a str] = lines;

// Strip off unuseful tail
// Strip off useless tail
for (i, line) in lines.enumerate_tail_forward(look_back) {
if line.starts_with("Build finished at ") {
interesting_lines = &lines[..i];
Expand Down

0 comments on commit 35e7bc0

Please sign in to comment.