Change remaining "iface" occurrences to "trait"; deprecate "iface"

This commit is contained in:
Lindsey Kuper 2012-07-31 10:27:51 -07:00
parent c2f49c46ae
commit 439afaa329
111 changed files with 194 additions and 188 deletions

View file

@ -1,6 +1,6 @@
import io::{reader, reader_util};
iface to_base64 {
trait to_base64 {
fn to_base64() -> ~str;
}
@ -58,7 +58,7 @@ impl of to_base64 for ~str {
}
}
iface from_base64 {
trait from_base64 {
fn from_base64() -> ~[u8];
}