We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e24981 commit 5cf598fCopy full SHA for 5cf598f
src/url.rs
@@ -457,13 +457,13 @@ impl fmt::Display for MultiHostUrlHost {
457
"{}:{}",
458
self.username.as_ref().unwrap(),
459
self.password.as_ref().unwrap()
460
- )?
+ )?;
461
}
462
if self.host.is_some() {
463
- write!(f, "@{}", self.host.as_ref().unwrap())?
+ write!(f, "@{}", self.host.as_ref().unwrap())?;
464
465
if self.port.is_some() {
466
- write!(f, ":{}", self.port.as_ref().unwrap())?
+ write!(f, ":{}", self.port.as_ref().unwrap())?;
467
468
Ok(())
469
0 commit comments