From 369490de8ad7e825e53cde5a38ca27f812f99b74 Mon Sep 17 00:00:00 2001 From: Cyril Plisko Date: Wed, 5 Jul 2017 09:30:07 +0300 Subject: Replace 'more -r' with 'less -r' in example --- src/lib.rs | 4 ++-- 1 file 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 //! } //! ``` -- cgit v1.2.3