Skip to content
This repository was archived by the owner on Oct 14, 2021. It is now read-only.

Commit 26ddbc4

Browse files
committed
clippy: fix single character string pattern
1 parent 656fa15 commit 26ddbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

starlark/src/values/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl Into<RuntimeError> for FunctionError {
100100
signature,
101101
} => format!(
102102
"Missing parameter {} for call to {}",
103-
missing.trim_start_matches("$"),
103+
missing.trim_start_matches('$'),
104104
repr(&function_type, &signature)
105105
),
106106
FunctionError::ArgsValueIsNotString => {

0 commit comments

Comments
 (0)