-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,8 @@ fn main() { | |
let args = App::new("Lexmatch") | ||
.version("0.3") | ||
.author("Maarten van Gompel (proycon) <[email protected]>") | ||
.about("Simple lexicon matcher powered by either suffix arrays or hash tables. In the former case, it matches lookups from a lexicon to a text and returns, for each, the number of hits and the hits themselves (byte-offsets to the start position)") | ||
.about("Simple lexicon matcher powered by either suffix arrays or hash tables.") | ||
.long_about("Simple lexicon matcher powered by either suffix arrays or hash tables.\nWhen using suffix arrays (default) it matches lookups from one or more lexicons to a text and returns, for each, the number of hits and the hits themselves (byte-offsets to the start position). When using hash tables (--tokens,--cjk) each token/character in the input is checked against the lexicons.") | ||
.arg(Arg::with_name("lexicon") | ||
.long("lexicon") | ||
.short('l') | ||
|