@@ -8,7 +8,7 @@ help: include the missing field in the pattern
8
8
|
9
9
LL | Dog { age: x, name } => {}
10
10
| ~~~~~~~~
11
- help: if the field is not relevant, discard it explicitly
11
+ help: if the value is not relevant, discard it explicitly
12
12
|
13
13
LL | Dog { age: x, name: _ } => {}
14
14
| ~~~~~~~~~~~
@@ -27,7 +27,7 @@ help: include the missing field in the pattern
27
27
|
28
28
LL | Dog { name: x, age } => {}
29
29
| ~~~~~~~
30
- help: if the field is not relevant, discard it explicitly
30
+ help: if the value is not relevant, discard it explicitly
31
31
|
32
32
LL | Dog { name: x, age: _ } => {}
33
33
| ~~~~~~~~~~
@@ -46,7 +46,7 @@ help: include the missing field in the pattern
46
46
|
47
47
LL | Dog { name: x, age } => {}
48
48
| ~~~~~~~
49
- help: if the field is not relevant, discard it explicitly
49
+ help: if the value is not relevant, discard it explicitly
50
50
|
51
51
LL | Dog { name: x, age: _ } => {}
52
52
| ~~~~~~~~~~
@@ -65,7 +65,7 @@ help: include the missing fields in the pattern
65
65
|
66
66
LL | Dog { name, age } => {}
67
67
| ~~~~~~~~~~~~~
68
- help: if the fields are not relevant, discard them explicitly
68
+ help: if the values are not relevant, discard them explicitly
69
69
|
70
70
LL | Dog { name: _, age: _ } => {}
71
71
| ~~~~~~~~~~~~~~~~~~~
0 commit comments