Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
SGrondin committed Aug 29, 2022
1 parent 83dee00 commit 29e2d8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fuzzy_compare.opam
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ synopsis: "Fastest bounded Levenshtein comparator over generic structures"
description: """
This library does not calculate the edit distance.

Rather, it provides extremely efficient automata that answer whether 2 values are within a predetermined number of edits of one another.
Rather, it provides extremely efficient automata that answer whether 2 values are within a predetermined number of edits of one another. Edits are: additions, deletions, replacements.

Once generated, an automaton can be reused to compare any 2 values in around 2-8 µs.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/fuzzy_compare.mli
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module type Intf = sig
(** The type being compared *)
type t

(** Type of the individual parts *)
(** Type of the individual parts (chars in a string, etc.) *)
type cmp [@@deriving equal]

(** Type optimized for quick access *)
Expand Down

0 comments on commit 29e2d8c

Please sign in to comment.