File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pub struct Number {
42
42
// Decimal exponent, analog to `e` notation in string form.
43
43
exponent : i16 ,
44
44
45
- // Integer base before sing and exponent applied.
45
+ // Integer base before sign and exponent applied.
46
46
mantissa : u64 ,
47
47
}
48
48
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ mod json_checker_fail {
154
154
}
155
155
156
156
#[ test]
157
- fn missmatch ( ) {
157
+ fn mismatch ( ) {
158
158
assert ! ( parse( r#"["mismatch"}"# ) . is_err( ) ) ;
159
159
}
160
160
}
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ fn parse_and_index_mut_from_null() {
238
238
239
239
assert ! ( data[ "foo" ] [ "bar" ] . is_null( ) ) ;
240
240
241
- // test that data didn't coerece to object
241
+ // test that data didn't coerce to object
242
242
assert ! ( data. is_null( ) ) ;
243
243
244
244
data[ "foo" ] [ "bar" ] = 100 . into ( ) ;
You can’t perform that action at this time.
0 commit comments