summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2016-10-26 20:33:09 +0300
committerCyril Plisko <cyril.plisko@mountall.com>2016-10-26 20:33:09 +0300
commit668905e91cfd26e3d81aa28839653ef6ce3e7d99 (patch)
treef3be4495cd11ca3759f15ecc329bf5d26add8995
parent4354b0036dcee31891eb3d57bab073a1c04e4fd1 (diff)
Address clippy warnings
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 868657c..eaf78d9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -34,8 +34,8 @@
//! running as usual. `Pager` cleans after itself and doesn't leak resources in
//! case of setup failure.
//!
-//! If you need to disable pager altogether set environment variable `NOPAGER` and Pager::setup()
-//! will skip initialization. The host application will continue as normal. Pager::ok() will
+//! If you need to disable pager altogether set environment variable `NOPAGER` and `Pager::setup()`
+//! will skip initialization. The host application will continue as normal. `Pager::ok()` will
//! reflect the fact that no Pager is active.
extern crate libc;