@@ -4,11 +4,11 @@ error: unexpected `,` in pattern
4
4
LL | while let b1, b2, b3 = reading_frame.next().expect("there should be a start codon") {
5
5
| ^
6
6
|
7
- help: try adding parentheses to match on a tuple..
7
+ help: try adding parentheses to match on a tuple...
8
8
|
9
9
LL | while let (b1, b2, b3) = reading_frame.next().expect("there should be a start codon") {
10
10
| ^^^^^^^^^^^^
11
- help: ..or a vertical bar to match on multiple alternatives
11
+ help: ... or a vertical bar to match on multiple alternatives
12
12
|
13
13
LL | while let b1 | b2 | b3 = reading_frame.next().expect("there should be a start codon") {
14
14
| ^^^^^^^^^^^^
@@ -19,11 +19,11 @@ error: unexpected `,` in pattern
19
19
LL | if let b1, b2, b3 = reading_frame.next().unwrap() {
20
20
| ^
21
21
|
22
- help: try adding parentheses to match on a tuple..
22
+ help: try adding parentheses to match on a tuple...
23
23
|
24
24
LL | if let (b1, b2, b3) = reading_frame.next().unwrap() {
25
25
| ^^^^^^^^^^^^
26
- help: ..or a vertical bar to match on multiple alternatives
26
+ help: ... or a vertical bar to match on multiple alternatives
27
27
|
28
28
LL | if let b1 | b2 | b3 = reading_frame.next().unwrap() {
29
29
| ^^^^^^^^^^^^
@@ -34,11 +34,11 @@ error: unexpected `,` in pattern
34
34
LL | Nucleotide::Adenine, Nucleotide::Cytosine, _ => true
35
35
| ^
36
36
|
37
- help: try adding parentheses to match on a tuple..
37
+ help: try adding parentheses to match on a tuple...
38
38
|
39
39
LL | (Nucleotide::Adenine, Nucleotide::Cytosine, _) => true
40
40
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41
- help: ..or a vertical bar to match on multiple alternatives
41
+ help: ... or a vertical bar to match on multiple alternatives
42
42
|
43
43
LL | Nucleotide::Adenine | Nucleotide::Cytosine | _ => true
44
44
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -49,11 +49,11 @@ error: unexpected `,` in pattern
49
49
LL | for x, _barr_body in women.iter().map(|woman| woman.allosomes.clone()) {
50
50
| ^
51
51
|
52
- help: try adding parentheses to match on a tuple..
52
+ help: try adding parentheses to match on a tuple...
53
53
|
54
54
LL | for (x, _barr_body) in women.iter().map(|woman| woman.allosomes.clone()) {
55
55
| ^^^^^^^^^^^^^^^
56
- help: ..or a vertical bar to match on multiple alternatives
56
+ help: ... or a vertical bar to match on multiple alternatives
57
57
|
58
58
LL | for x | _barr_body in women.iter().map(|woman| woman.allosomes.clone()) {
59
59
| ^^^^^^^^^^^^^^
@@ -64,11 +64,11 @@ error: unexpected `,` in pattern
64
64
LL | for x, y @ Allosome::Y(_) in men.iter().map(|man| man.allosomes.clone()) {
65
65
| ^
66
66
|
67
- help: try adding parentheses to match on a tuple..
67
+ help: try adding parentheses to match on a tuple...
68
68
|
69
69
LL | for (x, y @ Allosome::Y(_)) in men.iter().map(|man| man.allosomes.clone()) {
70
70
| ^^^^^^^^^^^^^^^^^^^^^^^
71
- help: ..or a vertical bar to match on multiple alternatives
71
+ help: ... or a vertical bar to match on multiple alternatives
72
72
|
73
73
LL | for x | y @ Allosome::Y(_) in men.iter().map(|man| man.allosomes.clone()) {
74
74
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -79,11 +79,11 @@ error: unexpected `,` in pattern
79
79
LL | let women, men: (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
80
80
| ^
81
81
|
82
- help: try adding parentheses to match on a tuple..
82
+ help: try adding parentheses to match on a tuple...
83
83
|
84
84
LL | let (women, men): (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
85
85
| ^^^^^^^^^^^^
86
- help: ..or a vertical bar to match on multiple alternatives
86
+ help: ... or a vertical bar to match on multiple alternatives
87
87
|
88
88
LL | let women | men: (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
89
89
| ^^^^^^^^^^^
0 commit comments