From b02b65a5476000b62586fa09b03eb1f20d55bb61 Mon Sep 17 00:00:00 2001 From: Joe Pletcher Date: Wed, 25 Jan 2012 00:41:27 -0800 Subject: [PATCH] Remove stale references to tags, replaced with enums. --- doc/rust.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/rust.md b/doc/rust.md index 41de381d76488..ca545bd6ee61d 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -2007,7 +2007,7 @@ alt_pat : pat [ "to" pat ] ? [ "if" expr ] ; An `alt` expression branches on a *pattern*. The exact form of matching that occurs depends on the pattern. Patterns consist of some combination of -literals, destructured tag constructors, records and tuples, variable binding +literals, destructured enum constructors, records and tuples, variable binding specifications and placeholders (`_`). An `alt` expression has a *head expression*, which is the value to compare to the patterns. The type of the patterns must equal the type of the head expression. @@ -2022,7 +2022,7 @@ An example of an `alt` expression: ~~~~ -tag list { nil; cons(X, @list); } +enum list { nil; cons(X, @list); } let x: list = cons(10, @cons(11, @nil)); @@ -3286,7 +3286,7 @@ such as vectors, strings, and the low level communication system (ports, channels, tasks). Support for other built-in types such as simple types, tuples, records, and -tags is open-coded by the Rust compiler. +enums is open-coded by the Rust compiler.