Explorar o código

Rename StrAsciiExt and OwnedStrAsciiExt usages

Joshua DeSeno %!s(int64=12) %!d(string=hai) anos
pai
achega
97ce85d9de
Modificáronse 2 ficheiros con 2 adicións e 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;