Skip to content

Commit 256eb52

Browse files
Fix typos. (#125)
1 parent a8b0544 commit 256eb52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

interpreter/src/objects.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ mod tests {
979979
}
980980

981981
#[test]
982-
fn test_short_curcuit_and() {
982+
fn test_short_circuit_and() {
983983
let mut context = Context::default();
984984
let data: HashMap<String, String> = HashMap::new();
985985
context.add_variable_from_value("data", data);

interpreter/src/ser.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub struct Duration(pub chrono::Duration);
5555
impl Duration {
5656
// Since serde can't natively represent durations, we serialize a special
5757
// 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.
5959
const NAME: &str = "$__cel_private_Duration";
6060
const STRUCT_NAME: &str = "Duration";
6161
const SECS_FIELD: &str = "secs";
@@ -141,7 +141,7 @@ pub struct Timestamp(pub chrono::DateTime<FixedOffset>);
141141
impl Timestamp {
142142
// Since serde can't natively represent timestamps, we serialize a special
143143
// 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.
145145
const NAME: &str = "$__cel_private_Timestamp";
146146
}
147147

0 commit comments

Comments
 (0)