diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-10-11 10:43:18 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-10-11 10:43:18 -0700 |
| commit | 0673b49b05f2de2a67dd81a27a2af4eeb0ccc830 (patch) | |
| tree | 9c220e3159a6d75e47b8495145023eb77f0560ff /doc | |
| parent | dfd00ec8a8f15062a4bf973847332e246e9851f5 (diff) | |
| download | rust-0673b49b05f2de2a67dd81a27a2af4eeb0ccc830.tar.gz rust-0673b49b05f2de2a67dd81a27a2af4eeb0ccc830.zip | |
manual: remove mention of tags, now very obsolete.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/rust.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/rust.md b/doc/rust.md index cde00aa2364..42b6143c46f 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -1116,9 +1116,7 @@ accessed through the components `x` and `y`, and laid out in memory with the An _enumeration item_ simultaneously declares a new nominal [enumerated type](#enumerated-types) as well as a set of *constructors* that can be used to create or pattern-match values of the corresponding enumerated -type. Note that `enum` previously was referred to as a `tag`, however this -definition has been deprecated. While `tag` is no longer used, the two are -synonymous. +type. The constructors of an `enum` type may be recursive: that is, each constructor may take an argument that refers, directly or indirectly, to the enumerated |
