summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-09-10 00:08:42 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-09-10 00:08:42 -0400
commite3da7268362efe120d3a6ea6a68d92d1ee342842 (patch)
tree3f303ded2233cdf7d132ef95461d40a497b7e8c2 /src/main.rs
parent5b36c86c15933a6f55fd4d49712461c263a3de1c (diff)
Rename search module to search_stream.
The name better reflects the difference between it and the search_buffer module.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 46ff894d..6666a6c0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -41,7 +41,7 @@ use walkdir::DirEntry;
use args::Args;
use out::{NoColorTerminal, Out, OutBuffer};
use printer::Printer;
-use search::InputBuffer;
+use search_stream::InputBuffer;
macro_rules! errored {
($($tt:tt)*) => {
@@ -63,8 +63,8 @@ mod glob;
mod ignore;
mod out;
mod printer;
-mod search;
mod search_buffer;
+mod search_stream;
mod terminal;
mod types;
mod walk;