diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-05-14 20:30:44 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-05-14 20:30:44 -0400 |
| commit | 6df13d4d886361776ebd8173c60adb4161d315b7 (patch) | |
| tree | afa5c6dd94a177b7f61ad77eb6f6dac59aa728f6 | |
| parent | 5501f076c207ae3b2466e330aa5ba8cb38bf4096 (diff) | |
| parent | 568f13ac7008db205dbd21dc5615614e3fc63b24 (diff) | |
| download | rust-6df13d4d886361776ebd8173c60adb4161d315b7.tar.gz rust-6df13d4d886361776ebd8173c60adb4161d315b7.zip | |
Rollup merge of #25420 - habnabit:master, r=steveklabnik
It seems to refer to something that used to exist, but got moved, and then not everything got cleaned up.
| -rw-r--r-- | src/doc/trpl/enums.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/trpl/enums.md b/src/doc/trpl/enums.md index 55de3632800..01905caf5ec 100644 --- a/src/doc/trpl/enums.md +++ b/src/doc/trpl/enums.md @@ -55,9 +55,6 @@ fn process_color_change(msg: Message) { } ``` -Both variants are named `Digit`, but since they’re scoped to the `enum` name -there's no ambiguity. - Not supporting these operations may seem rather limiting, but it’s a limitation which we can overcome. There are two ways: by implementing equality ourselves, or by pattern matching variants with [`match`][match] expressions, which you’ll |
