Skip to content

Commit

Permalink
chore: Punctuation in error messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed Oct 29, 2024
1 parent d299f73 commit 0727a21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/pavexc/src/language/resolved_path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ impl Display for UnknownPath {
let krate = path.crate_name().to_string();
write!(
f,
"I could not find '{path}' in the auto-generated documentation for '{krate}'"
"I could not find '{path}' in the auto-generated documentation for '{krate}'."
)
}
}
2 changes: 1 addition & 1 deletion libs/pavexc/src/rustdoc/queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ impl std::fmt::Display for UnknownItemPath {
let krate = self.path.first().unwrap();
write!(
f,
"I could not find '{path}' in the auto-generated documentation for '{krate}'"
"I could not find '{path}' in the auto-generated documentation for '{krate}'."
)
}
}
Expand Down

0 comments on commit 0727a21

Please sign in to comment.