summaryrefslogtreecommitdiffstats
path: root/src/search_buffer.rs
diff options
context:
space:
mode:
authorLeonardo Yvens <leoyvens@gmail.com>2016-12-23 17:53:35 -0200
committerAndrew Gallant <jamslam@gmail.com>2016-12-23 14:53:35 -0500
commitdd5ded2f78145755208043db1027cdb85ac9fd5a (patch)
tree4a4541ba35332fb7e9af9d7b26ec17bf3602b2cc /src/search_buffer.rs
parentcbacf4f19ea3a73f04070d942b217b333cf88e67 (diff)
fix some clippy lints (#288)
Diffstat (limited to 'src/search_buffer.rs')
-rw-r--r--src/search_buffer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search_buffer.rs b/src/search_buffer.rs
index 1e8cfe8f..2b792b5c 100644
--- a/src/search_buffer.rs
+++ b/src/search_buffer.rs
@@ -1,9 +1,9 @@
/*!
-The search_buffer module is responsible for searching a single file all in a
+The `search_buffer` module is responsible for searching a single file all in a
single buffer. Typically, the source of the buffer is a memory map. This can
be useful for when memory maps are faster than streaming search.
-Note that this module doesn't quite support everything that search_stream does.
+Note that this module doesn't quite support everything that `search_stream` does.
Notably, showing contexts.
*/
use std::cmp;