Skip to content

Commit c7f71bc

Browse files
authored
docs: update readme formatting
1 parent 76d8c0f commit c7f71bc

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ the Damerau-Levenshtein optimal string alignment (OSA) edit distance
88
algorithms. The original C# project can be found at [SoftWx.Match](https://github.com/softwx/SoftWx.Match).
99

1010
## Installation
11-
---------------
1211

1312
The easiest way to install editdistpy is using `pip`:
1413
```
1514
pip install -U editdistpy
1615
```
1716

1817
## Usage
19-
--------
2018

2119
You can specify the `max_distance` you care about, if the edit distance exceeds
2220
this `max_distance`, `-1` will be returned. Specifying a sensible max distance
@@ -64,7 +62,6 @@ print(damerau_osa.distance(string_1, string_2, max_distance))
6462
```
6563

6664
## Benchmark
67-
------------
6865

6966
A simple benchmark was done on Python 3.8.12 against [editdistance](https://github.com/roy-ht/editdistance) which implements the Levenshtein edit distance
7067
algorithm.
@@ -134,6 +131,5 @@ be the more suitable library if your use case mainly deals with comparing short
134131
strings.
135132

136133
## Changelog
137-
------------
138134

139135
See the [changelog](https://github.com/mammothb/editdistpy/blob/master/CHANGELOG.md) for a history of notable changes to edistdistpy.

0 commit comments

Comments
 (0)