mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00
Replace LUCKY links with actual links
This commit is contained in:
parent
b22acefa9c
commit
d548e8830a
22 changed files with 88 additions and 55 deletions
|
@ -27,11 +27,13 @@ $(T2 isSameLength,
|
|||
$(D isSameLength([1, 2, 3], [4, 5, 6])) returns $(D true).)
|
||||
$(T2 levenshteinDistance,
|
||||
$(D levenshteinDistance("kitten", "sitting")) returns $(D 3) by using
|
||||
the $(LUCKY Levenshtein distance _algorithm).)
|
||||
the $(LINK2 https://en.wikipedia.org/wiki/Levenshtein_distance,
|
||||
Levenshtein distance _algorithm).)
|
||||
$(T2 levenshteinDistanceAndPath,
|
||||
$(D levenshteinDistanceAndPath("kitten", "sitting")) returns
|
||||
$(D tuple(3, "snnnsni")) by using the $(LUCKY Levenshtein distance
|
||||
_algorithm).)
|
||||
$(D tuple(3, "snnnsni")) by using the
|
||||
$(LINK2 https://en.wikipedia.org/wiki/Levenshtein_distance,
|
||||
Levenshtein distance _algorithm).)
|
||||
$(T2 max,
|
||||
$(D max(3, 4, 2)) returns $(D 4).)
|
||||
$(T2 min,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue