Skip to content

Commit

Permalink
further fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Schmidt committed Jan 3, 2024
1 parent e6119f7 commit 080559d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algorithm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl FillContext for () {
false
}
fn fill<T: ArrayValue>(&self) -> Result<T, &'static str> {
Err(". No fill is set")
Err(". No fill is set.")
}
fn fill_error(error: Self::Error) -> Self::Error {
error
Expand All @@ -125,7 +125,7 @@ impl FillContext for (&CodeSpan, &Inputs) {
false
}
fn fill<T: ArrayValue>(&self) -> Result<T, &'static str> {
Err(". No fill is set")
Err(". No fill is set.")
}
fn fill_error(error: Self::Error) -> Self::Error {
error
Expand Down

0 comments on commit 080559d

Please sign in to comment.