about summary refs log tree commit diff
path: root/src/libstd/c_vec.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-01-19 15:20:57 -0800
committerPatrick Walton <pcwalton@mimiga.net>2012-01-19 15:22:25 -0800
commitc5a407b11bf01aa2a348010dffbbce2cf202d503 (patch)
tree0430f216db0812e131670822b53b009a25ad9c5d /src/libstd/c_vec.rs
parent7e21be5304769686726f8939606ccdbe38127814 (diff)
downloadrust-c5a407b11bf01aa2a348010dffbbce2cf202d503.tar.gz
rust-c5a407b11bf01aa2a348010dffbbce2cf202d503.zip
stdlib: "tag" -> "enum"
Diffstat (limited to 'src/libstd/c_vec.rs')
-rw-r--r--src/libstd/c_vec.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/c_vec.rs b/src/libstd/c_vec.rs
index 5bab771ab7d..05d59c2b50b 100644
--- a/src/libstd/c_vec.rs
+++ b/src/libstd/c_vec.rs
@@ -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});
 }