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 75bdb15 commit 6c0f9bdCopy full SHA for 6c0f9bd
src/file/format/yaml.rs
@@ -37,7 +37,7 @@ fn from_yaml_value(
37
value
38
.parse::<f64>()
39
.map_err(|_| {
40
- Box::new(FloatParsingError(value.clone())) as Box<(dyn Error + Send + Sync)>
+ Box::new(FloatParsingError(value.clone())) as Box<dyn Error + Send + Sync>
41
})
42
.map(ValueKind::Float)
43
.map(|f| Value::new(uri, f))
0 commit comments