Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
CalemRoelofs committed Nov 10, 2023
1 parent 1ca985c commit b30d953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ fn parse_internal(rule: Pair<Rule>) -> Result<JsonPath, JsonPathParserError> {
Rule::index => Ok(JsonPath::Index(parse_index(rule)?)),
_ => Err(JsonPathParserError::ParserError(format!(
"{} did not match any 'Rule' variant",
rule.to_string()
rule
))),
}
}
Expand Down

0 comments on commit b30d953

Please sign in to comment.