rollup merge of #20182: brianloveswords/patch-2

Treemap should be BTreeMap
This commit is contained in:
Alex Crichton 2014-12-29 16:35:56 -08:00
commit 7b3be9b854

View File

@ -29,7 +29,7 @@
//! * `String`: equivalent to rust's `String`
//! * `Array`: equivalent to rust's `Vec<T>`, but also allowing objects of different types in the
//! same array
//! * `Object`: equivalent to rust's `Treemap<String, json::Json>`
//! * `Object`: equivalent to rust's `BTreeMap<String, json::Json>`
//! * `Null`
//!
//! An object is a series of string keys mapping to values, in `"key": value` format.