docs(uri): fix rendering errors
Add a code block around the URI explanation to make it legible and add a missing backquote
This commit is contained in:
@@ -25,11 +25,12 @@ use Error;
|
|||||||
/// > ```
|
/// > ```
|
||||||
///
|
///
|
||||||
/// # Uri explanations
|
/// # Uri explanations
|
||||||
///
|
/// ```notrust
|
||||||
/// abc://username:password@example.com:123/path/data?key=value&key2=value2#fragid1
|
/// abc://username:password@example.com:123/path/data?key=value&key2=value2#fragid1
|
||||||
/// |-| |-------------------------------||--------| |-------------------| |-----|
|
/// |-| |-------------------------------||--------| |-------------------| |-----|
|
||||||
/// | | | | |
|
/// | | | | |
|
||||||
/// scheme authority path query fragment
|
/// scheme authority path query fragment
|
||||||
|
/// ```
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Uri {
|
pub struct Uri {
|
||||||
source: InternalUri,
|
source: InternalUri,
|
||||||
@@ -152,7 +153,7 @@ impl Uri {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the port of this `Uri.
|
/// Get the port of this `Uri`.
|
||||||
pub fn port(&self) -> Option<u16> {
|
pub fn port(&self) -> Option<u16> {
|
||||||
match self.authority() {
|
match self.authority() {
|
||||||
Some(auth) => auth.find(":").and_then(|i| u16::from_str(&auth[i+1..]).ok()),
|
Some(auth) => auth.find(":").and_then(|i| u16::from_str(&auth[i+1..]).ok()),
|
||||||
|
|||||||
Reference in New Issue
Block a user