@@ -8,7 +8,7 @@ help: include the missing field in the pattern
88 |
99LL | Dog { age: x, name } => {}
1010 | ~~~~~~~~
11- help: if the field is not relevant, discard it explicitly
11+ help: if the value is not relevant, discard it explicitly
1212 |
1313LL | Dog { age: x, name: _ } => {}
1414 | ~~~~~~~~~~~
@@ -27,7 +27,7 @@ help: include the missing field in the pattern
2727 |
2828LL | Dog { name: x, age } => {}
2929 | ~~~~~~~
30- help: if the field is not relevant, discard it explicitly
30+ help: if the value is not relevant, discard it explicitly
3131 |
3232LL | Dog { name: x, age: _ } => {}
3333 | ~~~~~~~~~~
@@ -46,7 +46,7 @@ help: include the missing field in the pattern
4646 |
4747LL | Dog { name: x, age } => {}
4848 | ~~~~~~~
49- help: if the field is not relevant, discard it explicitly
49+ help: if the value is not relevant, discard it explicitly
5050 |
5151LL | Dog { name: x, age: _ } => {}
5252 | ~~~~~~~~~~
@@ -65,7 +65,7 @@ help: include the missing fields in the pattern
6565 |
6666LL | Dog { name, age } => {}
6767 | ~~~~~~~~~~~~~
68- help: if the fields are not relevant, discard them explicitly
68+ help: if the values are not relevant, discard them explicitly
6969 |
7070LL | Dog { name: _, age: _ } => {}
7171 | ~~~~~~~~~~~~~~~~~~~
0 commit comments