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 885d684 commit d55d46bCopy full SHA for d55d46b
src/lib.rs
@@ -930,8 +930,8 @@ impl Url {
930
/// let url = Url::parse("https://example.com")?;
931
/// assert_eq!(url.port(), None);
932
///
933
- /// let url = Url::parse( "https://example.com:443/" )?;
934
- /// assert_eq!( url.port(), None );
+ /// let url = Url::parse("https://example.com:443/")?;
+ /// assert_eq!(url.port(), None);
935
936
/// let url = Url::parse("ssh://example.com:22")?;
937
/// assert_eq!(url.port(), Some(22));
0 commit comments