We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b70bb commit e779844Copy full SHA for e779844
rewatch/src/config.rs
@@ -249,7 +249,7 @@ impl<'de> serde::Deserialize<'de> for ExperimentalFeature {
249
match v {
250
"LetUnwrap" => Ok(ExperimentalFeature::LetUnwrap),
251
other => {
252
- let available = vec!["LetUnwrap"].join(", ");
+ let available = ["LetUnwrap"].join(", ");
253
Err(DeError::custom(format!(
254
"Unknown experimental feature '{}'. Available features: {}",
255
other, available
0 commit comments