Travis build: 574 [cron]

This commit is contained in:
30secondsofcode
2018-10-01 20:16:38 +00:00
parent 41d08ed789
commit bf35deabc8
5 changed files with 1613 additions and 1612 deletions

View File

@ -417,7 +417,7 @@ isSimilar('tr','Rohit'); // false
Calculates the [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance) between two strings.
Calculates the number of changes (substitutions, deletions or additions) required to convert `string1` to `string2`.
Calculates the number of changes (substitutions, deletions or additions) required to convert `string1` to `string2`.
Can also be used to compare two strings as shown in the second example.
``` js