Skip to content

Commit e4d0dd0

Browse files
committed
doc
1 parent dd2f871 commit e4d0dd0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SIFT4 — fast approximate string distance algorithm
1+
SIFT4[^1]Super Fast and Accurate string distance algorithm
22

33
* zero memory copy
44
* 100% test coverage
@@ -22,3 +22,5 @@ BenchmarkSIFT4Distance/buffer/long_different-16 1520445 7
2222
PASS
2323
ok github.com/ndx-technologies/sift4 11.848s
2424
```
25+
26+
[^1]: https://siderite.dev/blog/super-fast-and-accurate-string-distance.html

sift4.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type offset struct {
1414
trans bool
1515
}
1616

17-
// Distance is fast O(N) approximate string distance algorithm.
17+
// Distance is fast O(N) string distance algorithm.
1818
// If pointer to buffer is provided, then it will be reused for storing temporary structures.
1919
// - maxOffset is the number of characters to search for matching letters
2020
// - maxDistance is the distance at which the algorithm should stop computing the value and just exit (the strings are too different anyway)

0 commit comments

Comments
 (0)