File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ pub enum Error {
78
78
/// JSON has a comma after the last value in an array or map.
79
79
TrailingComma ,
80
80
81
- /// JSON is nested too deeply, exceeeded the recursion limit.
81
+ /// JSON is nested too deeply, exceeded the recursion limit.
82
82
RecursionLimitExceeded ,
83
83
84
84
/// Custom error message from serde
@@ -135,7 +135,7 @@ impl core::fmt::Display for Error {
135
135
value."
136
136
}
137
137
Error :: TrailingComma => "JSON has a comma after the last value in an array or map." ,
138
- Error :: RecursionLimitExceeded => "JSON is nested too deeply, exceeeded the recursion limit." ,
138
+ Error :: RecursionLimitExceeded => "JSON is nested too deeply, exceeded the recursion limit." ,
139
139
Error :: Custom ( msg) => msg,
140
140
}
141
141
)
You can’t perform that action at this time.
0 commit comments