diff options
| author | bors <bors@rust-lang.org> | 2013-07-14 18:58:19 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-14 18:58:19 -0700 |
| commit | db438ad786eec6faa15c0a464569fcf5c9ce1edc (patch) | |
| tree | 6ea9482abe7c87311d23794e2eaaec12d3c9b677 | |
| parent | 68a32aad1ab60b29ebfffd7c2f8d5967371955fc (diff) | |
| parent | b7e4b88c4a4bdb33cb70283511d6fa27ce6eabf0 (diff) | |
| download | rust-db438ad786eec6faa15c0a464569fcf5c9ce1edc.tar.gz rust-db438ad786eec6faa15c0a464569fcf5c9ce1edc.zip | |
auto merge of #7792 : ozten/rust/master, r=huonw
Minor tweak, but I was confused when first digging into json.rs docs. I think it's clearer to say the module provides parsing and serialization.
| -rw-r--r-- | src/libextra/json.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/json.rs b/src/libextra/json.rs index 2f17e4a7417..00b172dda03 100644 --- a/src/libextra/json.rs +++ b/src/libextra/json.rs @@ -14,7 +14,7 @@ #[forbid(non_camel_case_types)]; #[allow(missing_doc)]; -//! json serialization +//! json parsing and serialization use std::iterator; use std::float; |
