summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2017-07-05 09:30:07 +0300
committerCyril Plisko <cyril.plisko@mountall.com>2017-07-05 09:30:07 +0300
commit369490de8ad7e825e53cde5a38ca27f812f99b74 (patch)
tree5e985f47e60917672775acf4c05b0b1ca9c22135
parentdd8ec3b181ca8cc8d7fd1a705bcf6f2fc5a34aa2 (diff)
Replace 'more -r' with 'less -r' in example
-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
//! }
//! ```