about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-02-15 16:36:27 -0800
committerbors <bors@rust-lang.org>2014-02-15 16:36:27 -0800
commit0c62d9d83d150c6937905288d69bf874c9fe81c3 (patch)
treef90683b243dc6650822fb75a19e8fce8008e343e /src/libextra
parentd98668a55996d656072a4cac7abb1dcbbdf4f48b (diff)
parente72ddbdc25a2696a41053832fad7d9b0428819af (diff)
auto merge of #12298 : alexcrichton/rust/rustdoc-testing, r=sfackler
It's too easy to forget the `rust` tag to test something.

Closes #11698
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/json.rs2
-rw-r--r--src/libextra/stats.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libextra/json.rs b/src/libextra/json.rs
index a0ca9eca1bd..4c6cd4218e7 100644
--- a/src/libextra/json.rs
+++ b/src/libextra/json.rs
@@ -30,7 +30,7 @@ An object is a series of string keys mapping to values, in `"key": value` format
 Arrays are enclosed in square brackets ([ ... ]) and objects in curly brackets ({ ... }).
 A simple JSON document encoding a person, his/her age, address and phone numbers could look like:
 
-```
+```ignore
 {
     "FirstName": "John",
     "LastName": "Doe",
diff --git a/src/libextra/stats.rs b/src/libextra/stats.rs
index 174f5fcfc03..799157f9a1a 100644
--- a/src/libextra/stats.rs
+++ b/src/libextra/stats.rs
@@ -341,7 +341,7 @@ pub fn write_5_number_summary(w: &mut io::Writer,
 /// As an example, the summary with 5-number-summary `(min=15, q1=17, med=20, q3=24, max=31)` might
 /// display as:
 ///
-/// ~~~~
+/// ~~~~ignore
 ///   10 |        [--****#******----------]          | 40
 /// ~~~~