File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ impl FromIterator<Option<JsonUnionField>> for JsonUnion {
114
114
}
115
115
}
116
116
117
- /// Tries to collect an array represented as a string to a JsonUnion
117
+ /// Tries to collect an array represented as a string to a ` JsonUnion`
118
118
impl FromIterator < Option < String > > for JsonUnion {
119
119
fn from_iter < I : IntoIterator < Item = Option < String > > > ( iter : I ) -> Self {
120
120
let inner = iter. into_iter ( ) ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ fn unnest_json_calls(func: &ScalarFunction) -> Option<Transformed<Expr>> {
78
78
fn extract_scalar_function ( expr : & Expr ) -> Option < & ScalarFunction > {
79
79
match expr {
80
80
Expr :: ScalarFunction ( func) => Some ( func) ,
81
- Expr :: Alias ( alias) => extract_scalar_function ( & * alias. expr ) ,
81
+ Expr :: Alias ( alias) => extract_scalar_function ( & alias. expr ) ,
82
82
_ => None ,
83
83
}
84
84
}
You can’t perform that action at this time.
0 commit comments