diff options
| author | Lindsey Kuper <lindsey@rockstargirl.org> | 2012-07-31 10:27:51 -0700 |
|---|---|---|
| committer | Lindsey Kuper <lindsey@rockstargirl.org> | 2012-07-31 11:52:16 -0700 |
| commit | 439afaa329751b3dfd6735862cd2645705598909 (patch) | |
| tree | 4a3c51b47d6ee3c2e057677efdcf29c60e0d9d95 /src/libstd/base64.rs | |
| parent | c2f49c46ae0b07aae8ae558d5a5e71ed85aeff23 (diff) | |
| download | rust-439afaa329751b3dfd6735862cd2645705598909.tar.gz rust-439afaa329751b3dfd6735862cd2645705598909.zip | |
Change remaining "iface" occurrences to "trait"; deprecate "iface"
Diffstat (limited to 'src/libstd/base64.rs')
| -rw-r--r-- | src/libstd/base64.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/base64.rs b/src/libstd/base64.rs index e2c8ad31344..7a8946d02a6 100644 --- a/src/libstd/base64.rs +++ b/src/libstd/base64.rs @@ -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]; } |
