Skip to content

Commit 249825a

Browse files
committed
Fix typo
1 parent e78f9e2 commit 249825a

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
@@ -75,7 +75,7 @@ pub enum Error {
7575
/// JSON has a comma after the last value in an array or map.
7676
TrailingComma,
7777

78-
/// JSON is nested too deeply, exceeeded the recursion limit.
78+
/// JSON is nested too deeply, exceeded the recursion limit.
7979
RecursionLimitExceeded,
8080

8181
/// Custom error message from serde
@@ -131,7 +131,7 @@ impl core::fmt::Display for Error {
131131
value."
132132
}
133133
Error::TrailingComma => "JSON has a comma after the last value in an array or map.",
134-
Error::RecursionLimitExceeded => "JSON is nested too deeply, exceeeded the recursion limit.",
134+
Error::RecursionLimitExceeded => "JSON is nested too deeply, exceeded the recursion limit.",
135135
Error::Custom(msg) => msg,
136136
}
137137
)

0 commit comments

Comments
 (0)