summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d3a09f6..563658e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -32,7 +32,7 @@
//!
//! Alternatively you can specify directly the desired pager command, exactly
//! as it would appear in PAGER environment variable. This is useful if you
-//! need some specific pager and/or flags (like "more -r") and would like to
+//! need some specific pager and/or flags (like "less -r") and would like to
//! avoid forcing your consumers into modifying their existing PAGER
//! configuration just for your application.
//!
@@ -40,7 +40,7 @@
//! extern crate pager;
//! use pager::Pager;
//! fn main() {
-//! Pager::with_pager("more -r").setup();
+//! Pager::with_pager("less -r").setup();
//! // The rest of your program goes here
//! }
//! ```