mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-22 17:44: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 {
|
||||
let result = subtypes
|
||||
.iter()
|
||||
.map(|s| titlecase(&s))
|
||||
.map(|s| titlecase(s))
|
||||
.map(|s| escape(&s))
|
||||
.map(|s| format!("<i>{s}</i>"))
|
||||
.join(", ");
|
||||
|
|
Loading…
Reference in a new issue