Skip to content

Commit

Permalink
Fix newlines?
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox committed Apr 10, 2024
1 parent a93d2c3 commit dafc603
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ pub struct WorldInstance {
}

impl fmt::Display for WorldInstance {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:{}", self.world.as_ref(), self.instance.as_ref())
}
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:{}", self.world.as_ref(), self.instance.as_ref())
}
}

impl Serialize for WorldInstance {
Expand Down

0 comments on commit dafc603

Please sign in to comment.