Skip to content

Commit aa37b6d

Browse files
Update json.rs
Treemap should be BTreeMap
1 parent d10642e commit aa37b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libserialize/json.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//! * `String`: equivalent to rust's `String`
3030
//! * `Array`: equivalent to rust's `Vec<T>`, but also allowing objects of different types in the
3131
//! same array
32-
//! * `Object`: equivalent to rust's `Treemap<String, json::Json>`
32+
//! * `Object`: equivalent to rust's `BTreeMap<String, json::Json>`
3333
//! * `Null`
3434
//!
3535
//! An object is a series of string keys mapping to values, in `"key": value` format.

0 commit comments

Comments
 (0)