stdlib: "tag" -> "enum"

This commit is contained in:
Patrick Walton
2012-01-19 15:20:57 -08:00
parent 7e21be5304
commit c5a407b11b
15 changed files with 39 additions and 39 deletions

View File

@@ -37,12 +37,12 @@ export ptr;
/*
Type: t
The type representing a native chunk of memory. Wrapped in a tag for
The type representing a native chunk of memory. Wrapped in a enum for
opacity; FIXME #818 when it is possible to have truly opaque types, this
should be revisited.
*/
tag t<T> {
enum t<T> {
t({ base: *mutable T, len: uint, rsrc: @dtor_res});
}