From a8b2f1794119be05b24240ddff013b1d533c3f5d Mon Sep 17 00:00:00 2001 From: Fenhl Date: Sat, 17 Jan 2015 20:44:54 +0000 Subject: [PATCH] Use singular they in the serialize::json docs See [https://gist.github.com/0xabad1dea/8870b192fd1758743f66](this document) by @0xabad1dea for the rationale. --- src/libserialize/json.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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::*; -- 2.44.0