Skip to content

Commit d448f5d

Browse files
chipshortaumetra
authored andcommitted
Fix typo
1 parent 8a45574 commit d448f5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/de/errors.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub enum Error {
7878
/// JSON has a comma after the last value in an array or map.
7979
TrailingComma,
8080

81-
/// JSON is nested too deeply, exceeeded the recursion limit.
81+
/// JSON is nested too deeply, exceeded the recursion limit.
8282
RecursionLimitExceeded,
8383

8484
/// Custom error message from serde
@@ -135,7 +135,7 @@ impl core::fmt::Display for Error {
135135
value."
136136
}
137137
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.",
139139
Error::Custom(msg) => msg,
140140
}
141141
)

0 commit comments

Comments
 (0)