about summary refs log tree commit diff
path: root/src/libtest/stats.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-13 14:42:03 +0000
committerbors <bors@rust-lang.org>2014-06-13 14:42:03 +0000
commit0422934e243ed57a7662ec878db9d4e01ca5b0f9 (patch)
tree5e7bcd1009b105bae30dac48beb5ffed9a53f256 /src/libtest/stats.rs
parentc119903f621a11643d5f299423a2c72eefffec4c (diff)
parentcac7a2053aba7be214d5e58e13867089638a8f50 (diff)
downloadrust-0422934e243ed57a7662ec878db9d4e01ca5b0f9.tar.gz
rust-0422934e243ed57a7662ec878db9d4e01ca5b0f9.zip
auto merge of #14831 : alexcrichton/rust/format-intl, r=brson
* The select/plural methods from format strings are removed
* The # character no longer needs to be escaped
* The \-based escapes have been removed
* '{{' is now an escape for '{'
* '}}' is now an escape for '}'

Closes #14810
[breaking-change]
Diffstat (limited to 'src/libtest/stats.rs')
-rw-r--r--src/libtest/stats.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/stats.rs b/src/libtest/stats.rs
index aa0e9b46fa7..b0562c39dc2 100644
--- a/src/libtest/stats.rs
+++ b/src/libtest/stats.rs
@@ -415,7 +415,7 @@ pub fn write_boxplot<T: Float + Show + FromPrimitive>(
         v = v + char_step;
         c += 1;
     }
-    try!(write!(w, r"\#"));
+    try!(write!(w, "#"));
     c += 1;
     while c < range_width && v < q3 {
         try!(write!(w, "*"));