Merge pull request #30 from usernameisnull/patch-8

Update ch06-01-defining-an-enum.md
pull/31/head
KaiserY 8 years ago committed by GitHub
commit 43579356ef

@ -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 {

Loading…
Cancel
Save