Skip to content

Commit

Permalink
Rename more like this
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed May 21, 2021
1 parent 4f8481a commit fd8e5bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod exclude;
mod explanation;
mod fuzzy_query;
mod intersection;
mod mlt;
mod more_like_this;
mod phrase_query;
mod query;
mod query_parser;
Expand Down Expand Up @@ -46,7 +46,7 @@ pub use self::explanation::Explanation;
pub(crate) use self::fuzzy_query::DfaWrapper;
pub use self::fuzzy_query::FuzzyTermQuery;
pub use self::intersection::intersect_scorers;
pub use self::mlt::{MoreLikeThisQuery, MoreLikeThisQueryBuilder};
pub use self::more_like_this::{MoreLikeThisQuery, MoreLikeThisQueryBuilder};
pub use self::phrase_query::PhraseQuery;
pub use self::query::{Query, QueryClone};
pub use self::query_parser::QueryParser;
Expand Down
4 changes: 2 additions & 2 deletions src/query/mlt/mod.rs → src/query/more_like_this/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod mlt;
mod more_like_this;
mod query;

pub use self::mlt::MoreLikeThis;
pub use self::more_like_this::MoreLikeThis;
pub use self::query::{MoreLikeThisQuery, MoreLikeThisQueryBuilder};
File renamed without changes.
File renamed without changes.

0 comments on commit fd8e5bd

Please sign in to comment.