Skip to content

Commit 7e63bcd

Browse files
committed
fix clippy
1 parent f9d2485 commit 7e63bcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plot/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ fn validate_string(name: &str, s: &str, c: &StringConstraint) -> Result<(), Stri
15021502
return Err(format!(
15031503
"'{}' should be {}, not '{}'",
15041504
name,
1505-
crate::or_list_quoted(&c.allowed_values, '\''),
1505+
crate::or_list_quoted(c.allowed_values, '\''),
15061506
s
15071507
));
15081508
}

0 commit comments

Comments
 (0)