Merge pull request #30 from usernameisnull/patch-8

Update ch06-01-defining-an-enum.md
This commit is contained in:
KaiserY 2017-05-02 19:50:34 -05:00 committed by GitHub
commit 43579356ef

View File

@ -33,7 +33,7 @@ let four = IpAddrKind::V4;
let six = IpAddrKind::V6;
```
注意枚举的成员位于其标识符的命名空间中,并使用两个冒号分开。这么设计的益处是现在`IpAddrKind::V4`和`IpAddrKind::V6`是相同类型的:`IpAddrKind`。例如,接着我们可以一个函数来获取`IpAddrKind`
注意枚举的成员位于其标识符的命名空间中,并使用两个冒号分开。这么设计的益处是现在`IpAddrKind::V4`和`IpAddrKind::V6`是相同类型的:`IpAddrKind`。例如,接着我们可以定义一个函数来获取`IpAddrKind`
```rust
# enum IpAddrKind {