aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7819bad..8e0a8b9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -22,8 +22,8 @@
//! ## Parsing a URI into its components
//!
//! ```rust
-//! # extern crate rhymuri;
-//! use rhymuri::Uri;
+//! # extern crate uris;
+//! use uris::Uri;
//!
//! let uri = Uri::parse("http://www.example.com/foo?bar#baz").unwrap();
//! let authority = uri.authority().unwrap();
@@ -40,8 +40,8 @@
//! ## Generating a URI from its components
//!
//! ```rust
-//! # extern crate rhymuri;
-//! use rhymuri::{
+//! # extern crate uris;
+//! use uris::{
//! Authority,
//! Uri,
//! };