diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs index 41499b5ae0e..a07b653cb26 100644 --- a/src/libserialize/json.rs +++ b/src/libserialize/json.rs @@ -34,7 +34,7 @@ //! //! An object is a series of string keys mapping to values, in `"key": value` format. //! Arrays are enclosed in square brackets ([ ... ]) and objects in curly brackets ({ ... }). -//! 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 //! //! ```ignore //! { @@ -192,8 +192,8 @@ //! } //! ``` -use self::JsonEvent::*; use self::ErrorCode::*; +use self::JsonEvent::*; use self::ParserError::*; use self::DecoderError::*; use self::ParserState::*;