Explorar el Código

Rename StrAsciiExt and OwnedStrAsciiExt usages

Joshua DeSeno hace 12 años
padre
commit
97ce85d9de
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      src/host.rs
  2. 1 1
      src/parser.rs

+ 1 - 1
src/host.rs

@@ -6,7 +6,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::ascii::OwnedStrAsciiExt;
+use std::ascii::OwnedAsciiExt;
 use std::cmp;
 use std::fmt::{Formatter, FormatError, Show};
 use parser::{

+ 1 - 1
src/parser.rs

@@ -7,7 +7,7 @@
 // except according to those terms.
 
 
-use std::ascii::StrAsciiExt;
+use std::ascii::AsciiExt;
 use std::fmt::{Formatter, FormatError, Show};
 use std::str::CharRange;