Squashed commit: fix typo.

pull/814/head
sweet2honey 3 years ago
parent a5079e1bb5
commit 8ca8c9529d

@ -451,7 +451,7 @@ error: `..` can only be used once per tuple pattern // 每个元组模式只能
error: could not compile `world_hello` due to previous error ^^
```
Rust 无法判断,`second` 应该匹配 `numbers` 中的第几个元素,因此这里使用两个 `..` 模式,是很大歧义的!
Rust 无法判断,`second` 应该匹配 `numbers` 中的第几个元素,因此这里使用两个 `..` 模式,是很大歧义的!
### 匹配守卫提供的额外条件

@ -92,7 +92,6 @@ enum IpAddr {
}
fn main() {
// let d_panic = Direction::South;
let ip1 = IpAddr::Ipv6;
let ip_str = match ip1 {
IpAddr::Ipv4 => "127.0.0.1",

Loading…
Cancel
Save