Skip to content

Commit

Permalink
missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby committed Aug 30, 2023
1 parent 0f63dbd commit fc0c9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl<'a> fmt::Display for URIResult<'a> {
self.uri().to_str().unwrap_or("<not utf8>")
)?;
write!(fmt, "Priority: {}, ", self.priority())?;
write!(fmt, "Weight: {}", self.weight())?;
write!(fmt, "Weight: {}, ", self.weight())?;
write!(fmt, "TTL: {}", self.ttl())
}
}
Expand Down

0 comments on commit fc0c9cf

Please sign in to comment.