Skip to content

Commit 6c0f9bd

Browse files
committed
style: Fix rustc warning
1 parent 75bdb15 commit 6c0f9bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/file/format/yaml.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn from_yaml_value(
3737
value
3838
.parse::<f64>()
3939
.map_err(|_| {
40-
Box::new(FloatParsingError(value.clone())) as Box<(dyn Error + Send + Sync)>
40+
Box::new(FloatParsingError(value.clone())) as Box<dyn Error + Send + Sync>
4141
})
4242
.map(ValueKind::Float)
4343
.map(|f| Value::new(uri, f))

0 commit comments

Comments
 (0)