Skip to content

Commit

Permalink
use push instead of push_str
Browse files Browse the repository at this point in the history
  • Loading branch information
geremachek committed Nov 20, 2022
1 parent 9b2b7ba commit 7c407ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plane/plane_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ impl Plane {

self.nomens
.keys()
.for_each(|nomen| { memory.push_str(nomen) ; memory.push_str("\n")});
.for_each(|nomen| { memory.push_str(nomen) ; memory.push('\n')});

return memory
memory
}
}

0 comments on commit 7c407ef

Please sign in to comment.