We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b21087 commit c614510Copy full SHA for c614510
src/librustdoc/html/static/main.js
@@ -112,8 +112,11 @@
112
document.location.href = url;
113
});
114
/**
115
- * Code from Stackoverflow to compute the Levenshtein distance between two strings
116
- * Written by Marco de Wit at http://stackoverflow.com/a/18514751/745719
+ * A function to compute the Levenshtein distance between two strings
+ * Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported
117
+ * Full License can be found at http://creativecommons.org/licenses/by-sa/3.0/legalcode
118
+ * This code is an unmodified version of the code written by Marco de Wit
119
+ * and was found at http://stackoverflow.com/a/18514751/745719
120
*/
121
var levenshtein = (function() {
122
var row2 = [];
0 commit comments