about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-29 16:35:56 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-29 16:35:56 -0800
commit7b3be9b854255a897018ec5d81585bdd5f095f19 (patch)
tree79763fb98009fb8400fa4cfbf65b4adddc56c6c5 /src
parent62c9a48953d8bb47dcdba4d81e977839270916c9 (diff)
parentaa37b6dcbb68f6629da2ad8feca7e1af616e6675 (diff)
rollup merge of #20182: brianloveswords/patch-2
Treemap should be BTreeMap
Diffstat (limited to 'src')
-rw-r--r--src/libserialize/json.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs
index 830d96fe172..e95f87ccb89 100644
--- a/src/libserialize/json.rs
+++ b/src/libserialize/json.rs
@@ -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.