added more matches for lesbian 7-stripe variant

This commit is contained in:
Valerie Wolfe 2024-11-01 11:09:00 -04:00
parent 0670e3796c
commit 9bac43bf5d
3 changed files with 6 additions and 4 deletions

View file

@ -55,7 +55,7 @@ The 5-stripe lesbian pride flag designed by Emily Gwen in 2018.
.Pp
VARIANTS
.Bl -tag -width Ds -compact
.It Ic 7-color
.It Ic 7, 7-color, 7-stripe
The 7-stripe lesbian pride flag designed by Emily Gwen in 2018.
.El
.It Ic multisexual, m-spec, mspec

View file

@ -130,7 +130,7 @@ names:
=> { println!("The gender-nonconforming pride flag.\n\nnames:\n 'gender-nonconforming', 'gendernonconforming', 'gnc'"); },
"lesbian"
"lesbian" | "wlw"
=> {
println!("The 5-stripe lesbian flag designed by Emily Gwen in 2018.
@ -138,7 +138,9 @@ names:
'lesbian', 'wlw'
variants:
7-color 7-stripe flag, also designed in 2018 by Emily Gwen");
7 7-stripe flag, also designed in 2018 by Emily Gwen
7-color
7-stripe");
},

View file

@ -140,7 +140,7 @@ fn main() {
Some("lesbian" | "wlw")
=> {
match variant.as_deref() {
Some("7-color")
Some("7" | "7-color" | "7-stripe")
=> variant::lesbian_7(),
_
=> flag::lesbian()