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/json.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/json.rs')
| -rw-r--r-- | src/libstd/json.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/json.rs b/src/libstd/json.rs index ee265269872..6a08bb5d9e1 100644 --- a/src/libstd/json.rs +++ b/src/libstd/json.rs @@ -510,7 +510,7 @@ fn eq(value0: json, value1: json) -> bool { } } -iface to_json { fn to_json() -> json; } +trait to_json { fn to_json() -> json; } impl of to_json for json { fn to_json() -> json { self } |
