@@ -4,11 +4,11 @@ error: unexpected `,` in pattern
44LL | while let b1, b2, b3 = reading_frame.next().expect("there should be a start codon") {
55 | ^
66 |
7- help: try adding parentheses to match on a tuple..
7+ help: try adding parentheses to match on a tuple...
88 |
99LL | while let (b1, b2, b3) = reading_frame.next().expect("there should be a start codon") {
1010 | ^^^^^^^^^^^^
11- help: ..or a vertical bar to match on multiple alternatives
11+ help: ... or a vertical bar to match on multiple alternatives
1212 |
1313LL | while let b1 | b2 | b3 = reading_frame.next().expect("there should be a start codon") {
1414 | ^^^^^^^^^^^^
@@ -19,11 +19,11 @@ error: unexpected `,` in pattern
1919LL | if let b1, b2, b3 = reading_frame.next().unwrap() {
2020 | ^
2121 |
22- help: try adding parentheses to match on a tuple..
22+ help: try adding parentheses to match on a tuple...
2323 |
2424LL | if let (b1, b2, b3) = reading_frame.next().unwrap() {
2525 | ^^^^^^^^^^^^
26- help: ..or a vertical bar to match on multiple alternatives
26+ help: ... or a vertical bar to match on multiple alternatives
2727 |
2828LL | if let b1 | b2 | b3 = reading_frame.next().unwrap() {
2929 | ^^^^^^^^^^^^
@@ -34,11 +34,11 @@ error: unexpected `,` in pattern
3434LL | Nucleotide::Adenine, Nucleotide::Cytosine, _ => true
3535 | ^
3636 |
37- help: try adding parentheses to match on a tuple..
37+ help: try adding parentheses to match on a tuple...
3838 |
3939LL | (Nucleotide::Adenine, Nucleotide::Cytosine, _) => true
4040 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41- help: ..or a vertical bar to match on multiple alternatives
41+ help: ... or a vertical bar to match on multiple alternatives
4242 |
4343LL | Nucleotide::Adenine | Nucleotide::Cytosine | _ => true
4444 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -49,11 +49,11 @@ error: unexpected `,` in pattern
4949LL | for x, _barr_body in women.iter().map(|woman| woman.allosomes.clone()) {
5050 | ^
5151 |
52- help: try adding parentheses to match on a tuple..
52+ help: try adding parentheses to match on a tuple...
5353 |
5454LL | for (x, _barr_body) in women.iter().map(|woman| woman.allosomes.clone()) {
5555 | ^^^^^^^^^^^^^^^
56- help: ..or a vertical bar to match on multiple alternatives
56+ help: ... or a vertical bar to match on multiple alternatives
5757 |
5858LL | for x | _barr_body in women.iter().map(|woman| woman.allosomes.clone()) {
5959 | ^^^^^^^^^^^^^^
@@ -64,11 +64,11 @@ error: unexpected `,` in pattern
6464LL | for x, y @ Allosome::Y(_) in men.iter().map(|man| man.allosomes.clone()) {
6565 | ^
6666 |
67- help: try adding parentheses to match on a tuple..
67+ help: try adding parentheses to match on a tuple...
6868 |
6969LL | for (x, y @ Allosome::Y(_)) in men.iter().map(|man| man.allosomes.clone()) {
7070 | ^^^^^^^^^^^^^^^^^^^^^^^
71- help: ..or a vertical bar to match on multiple alternatives
71+ help: ... or a vertical bar to match on multiple alternatives
7272 |
7373LL | for x | y @ Allosome::Y(_) in men.iter().map(|man| man.allosomes.clone()) {
7474 | ^^^^^^^^^^^^^^^^^^^^^^
@@ -79,11 +79,11 @@ error: unexpected `,` in pattern
7979LL | let women, men: (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
8080 | ^
8181 |
82- help: try adding parentheses to match on a tuple..
82+ help: try adding parentheses to match on a tuple...
8383 |
8484LL | let (women, men): (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
8585 | ^^^^^^^^^^^^
86- help: ..or a vertical bar to match on multiple alternatives
86+ help: ... or a vertical bar to match on multiple alternatives
8787 |
8888LL | let women | men: (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
8989 | ^^^^^^^^^^^
0 commit comments