aboutsummaryrefslogtreecommitdiff
path: root/src/authority.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/authority.rs')
-rw-r--r--src/authority.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/authority.rs b/src/authority.rs
index d475f85..955816c 100644
--- a/src/authority.rs
+++ b/src/authority.rs
@@ -17,10 +17,10 @@ use super::validate_ipv6_address::validate_ipv6_address;
/// ## Parsing an Authority into its components
///
/// ```rust
-/// # extern crate uri;
-/// use uri::Authority;
+/// # extern crate rhymuri;
+/// use rhymuri::Authority;
///
-/// # fn test() -> Result<(), uri::Error> {
+/// # fn test() -> Result<(), rhymuri::Error> {
/// let authority = Authority::parse("nobody@www.example.com:8080")?;
/// assert_eq!(Some("nobody".as_bytes()), authority.userinfo());
/// assert_eq!("www.example.com".as_bytes(), authority.host());
@@ -32,10 +32,10 @@ use super::validate_ipv6_address::validate_ipv6_address;
/// ## Generating a URI from its components
///
/// ```rust
-/// # extern crate uri;
-/// use uri::Authority;
+/// # extern crate rhymuri;
+/// use rhymuri::Authority;
///
-/// # fn test() -> Result<(), uri::Error> {
+/// # fn test() -> Result<(), rhymuri::Error> {
/// let mut authority = Authority::default();
/// authority.set_userinfo(Some("nobody").map(Into::into));
/// authority.set_host("www.example.com");