From 90baf4ee27430403d2864049b9cb842459690990 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Fri, 1 Feb 2019 14:34:12 +0200 Subject: [PATCH] more minor re-wording of the README --- README.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 2e832b6..7cb9275 100644 --- a/README.rst +++ b/README.rst @@ -41,22 +41,22 @@ fuzzysearch >>> find_near_matches('PATTERN', '---PATERN---', max_l_dist=1) [Match(start=3, end=9, dist=1)] -* approximate sub-string searches +* Approximate sub-string searches -* single, simple function to use +* A single, simple function to use - * chooses the fastest available search mechanism based on the given input + * Chooses the fastest available search mechanism based on the given input -* uses the Levenshtein Distance metric with configurable parameters +* Uses the Levenshtein Distance metric with configurable parameters - * separately configure the max. allowed distance, substitutions, deletions + * Separately configure the max. allowed distance, substitutions, deletions and insertions -* optional, highly optimized C and Cython implementations +* Advanced algorithms with optional C and Cython optimizations -* extensively tested +* Extensively tested -* free software: `MIT license `_ +* Free software: `MIT license `_ For more info, see the `documentation `_.