File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -979,7 +979,7 @@ mod tests {
979
979
}
980
980
981
981
#[ test]
982
- fn test_short_curcuit_and ( ) {
982
+ fn test_short_circuit_and ( ) {
983
983
let mut context = Context :: default ( ) ;
984
984
let data: HashMap < String , String > = HashMap :: new ( ) ;
985
985
context. add_variable_from_value ( "data" , data) ;
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pub struct Duration(pub chrono::Duration);
55
55
impl Duration {
56
56
// Since serde can't natively represent durations, we serialize a special
57
57
// newtype to indicate we want to rebuild the duration in the result, while
58
- // remaining compatible with most other Serializer implemenations .
58
+ // remaining compatible with most other Serializer implementations .
59
59
const NAME : & str = "$__cel_private_Duration" ;
60
60
const STRUCT_NAME : & str = "Duration" ;
61
61
const SECS_FIELD : & str = "secs" ;
@@ -141,7 +141,7 @@ pub struct Timestamp(pub chrono::DateTime<FixedOffset>);
141
141
impl Timestamp {
142
142
// Since serde can't natively represent timestamps, we serialize a special
143
143
// newtype to indicate we want to rebuild the timestamp in the result,
144
- // while remaining compatible with most other Serializer implemenations .
144
+ // while remaining compatible with most other Serializer implementations .
145
145
const NAME : & str = "$__cel_private_Timestamp" ;
146
146
}
147
147
You can’t perform that action at this time.
0 commit comments