about summary refs log tree commit diff
path: root/src/libserialize
diff options
context:
space:
mode:
authorLee Jeffery <lee@leejeffery.co.uk>2015-09-20 11:35:08 +0100
committerEljay <lee@leejeffery.co.uk>2015-09-20 11:37:08 +0100
commit140e2d3a092ebbeea5e110222bea3b37bc49abb8 (patch)
treee13caff70cf1fc86248a29767ab47220c42d7256 /src/libserialize
parentfd38a75077a4c5efc87413b7f9f7f1b6bc9db9af (diff)
downloadrust-140e2d3a092ebbeea5e110222bea3b37bc49abb8.tar.gz
rust-140e2d3a092ebbeea5e110222bea3b37bc49abb8.zip
Miscellaneous cleanup for old issues.
Diffstat (limited to 'src/libserialize')
-rw-r--r--src/libserialize/json.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs
index 4bcaa4b5dbc..452feed3cdb 100644
--- a/src/libserialize/json.rs
+++ b/src/libserialize/json.rs
@@ -76,8 +76,7 @@
 //! Create a struct called `TestStruct` and serialize and deserialize it to and from JSON using the
 //! serialization API, using the derived serialization code.
 //!
-//! ```notrust
-//! // FIXME(#19470): this cannot be ```rust``` because it fails orphan checking at the moment
+//! ```rust
 //! extern crate serialize;
 //! use serialize::json;
 //!
@@ -111,8 +110,7 @@
 //!
 //! ### Simple example of `ToJson` usage
 //!
-//! ```notrust
-//! // FIXME(#19470): this cannot be ```rust``` because it fails orphan checking at the moment
+//! ```rust
 //! extern crate serialize;
 //! use serialize::json::{self, ToJson, Json};
 //!
@@ -151,8 +149,7 @@
 //!
 //! ### Verbose example of `ToJson` usage
 //!
-//! ```notrust
-//! // FIXME(#19470): this cannot be ```rust``` because it fails orphan checking at the moment
+//! ```rust
 //! extern crate serialize;
 //! use std::collections::BTreeMap;
 //! use serialize::json::{self, Json, ToJson};