about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-07-18 14:53:29 +0100
committerSimon Sapin <simon.sapin@exyr.org>2014-07-29 23:59:19 +0100
commitb86574bfff69124397e1a1bdf42a47053beb3aff (patch)
tree00a71fab73597e0193684cab58f86e02e031f4a6 /src/test
parentee8365ad81115d79e1a33ef0c034c4a74cf01819 (diff)
downloadrust-b86574bfff69124397e1a1bdf42a47053beb3aff.tar.gz
rust-b86574bfff69124397e1a1bdf42a47053beb3aff.zip
Rename the std::ascii::{Owned,}StrAsciiExt traits to {Owned,}AsciiExt
… and implement them on Vec<u8> / &[u8].

[breaking-change]
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-10683.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-10683.rs b/src/test/run-pass/issue-10683.rs
index 934adc07e2f..df4342bfeb5 100644
--- a/src/test/run-pass/issue-10683.rs
+++ b/src/test/run-pass/issue-10683.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::ascii::StrAsciiExt;
+use std::ascii::AsciiExt;
 
 static NAME: &'static str = "hello world";