mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-23 01:54:22 +00:00
Remove unnecessary reference
This commit is contained in:
parent
fb67ee7907
commit
c321ff6b15
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ fn display_stats(card: &Card) -> String {
|
||||||
fn display_subtypes(subtypes: &[CardSubtype]) -> String {
|
fn display_subtypes(subtypes: &[CardSubtype]) -> String {
|
||||||
let result = subtypes
|
let result = subtypes
|
||||||
.iter()
|
.iter()
|
||||||
.map(|s| titlecase(&s))
|
.map(|s| titlecase(s))
|
||||||
.map(|s| escape(&s))
|
.map(|s| escape(&s))
|
||||||
.map(|s| format!("<i>{s}</i>"))
|
.map(|s| format!("<i>{s}</i>"))
|
||||||
.join(", ");
|
.join(", ");
|
||||||
|
|
Loading…
Reference in a new issue