Skip to content

Commit

Permalink
fix: Typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Apr 23, 2024
1 parent fb9cd79 commit eba7317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/derive/src/filter_parameters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl<'a> FilterParameters<'a> {
if let Some(parameter) = fields.required_after_optional() {
return Err(Error::new_spanned(
parameter,
"Found required positional parameter after an optional positional parameter. The user can't input this parameters without inputing the optional ones first.",
"Found required positional parameter after an optional positional parameter. The user can't input this parameters without inputting the optional ones first.",
));
}

Expand Down

0 comments on commit eba7317

Please sign in to comment.