Skip to content

Commit e779844

Browse files
committed
fix lint
1 parent 47b70bb commit e779844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rewatch/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ impl<'de> serde::Deserialize<'de> for ExperimentalFeature {
249249
match v {
250250
"LetUnwrap" => Ok(ExperimentalFeature::LetUnwrap),
251251
other => {
252-
let available = vec!["LetUnwrap"].join(", ");
252+
let available = ["LetUnwrap"].join(", ");
253253
Err(DeError::custom(format!(
254254
"Unknown experimental feature '{}'. Available features: {}",
255255
other, available

0 commit comments

Comments
 (0)