1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-30 22:23:44 +02:00

Rename search module to search_stream.

The name better reflects the difference between it and the search_buffer
module.
This commit is contained in:
Andrew Gallant
2016-09-10 00:08:42 -04:00
parent 5b36c86c15
commit e3da726836
4 changed files with 15 additions and 6 deletions

View File

@ -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;