Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
//!
//! fn main() {
//! match fetch_url("https://www.rust-lang.org") {
//! Ok(_) => println!("Sucessfully fetched"),
//! Ok(_) => println!("Successfully fetched"),
//! Err(err) => panic!("Failed to fetch: {}", err),
//! }
//! }
Expand All @@ -147,7 +147,7 @@
//! Finished dev [unoptimized + debuginfo] target(s) in 1.54 secs
//! Running `target/debug/examples/retry`
//! Fetching https://www.rust-lang.org
//! Sucessfully fetched
//! Successfully fetched
//!
//! real 0m2.003s
//! user 0m1.536s
Expand Down