We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89c4e37 commit a8b2f17Copy full SHA for a8b2f17
src/libserialize/json.rs
@@ -34,7 +34,7 @@
34
//!
35
//! An object is a series of string keys mapping to values, in `"key": value` format.
36
//! Arrays are enclosed in square brackets ([ ... ]) and objects in curly brackets ({ ... }).
37
-//! A simple JSON document encoding a person, his/her age, address and phone numbers could look like
+//! A simple JSON document encoding a person, their age, address and phone numbers could look like
38
39
//! ```ignore
40
//! {
@@ -192,8 +192,8 @@
192
//! }
193
//! ```
194
195
-use self::JsonEvent::*;
196
use self::ErrorCode::*;
+use self::JsonEvent::*;
197
use self::ParserError::*;
198
use self::DecoderError::*;
199
use self::ParserState::*;
0 commit comments