File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
src/librustdoc/html/static/js Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ const NO_TYPE_FILTER = -1;
75
75
*/
76
76
77
77
/*
78
- * This function was translated, mostly line-for-line, from
79
- * https://github.com/rust-lang/rust/blob/ff4b772f805ec1e/compiler/rustc_span/src/edit_distance.rs
80
- *
81
- * The current implementation is the restricted Damerau-Levenshtein algorithm. It is restricted
82
- * because it does not permit modifying characters that have already been transposed. The specific
83
- * algorithm should not matter to the caller of the methods, which is why it is not noted in the
84
- * documentation.
85
- */
78
+ * This function was translated, mostly line-for-line, from
79
+ * https://github.com/rust-lang/rust/blob/ff4b772f805ec1e/compiler/rustc_span/src/edit_distance.rs
80
+ *
81
+ * The current implementation is the restricted Damerau-Levenshtein algorithm. It is restricted
82
+ * because it does not permit modifying characters that have already been transposed. The specific
83
+ * algorithm should not matter to the caller of the methods, which is why it is not noted in the
84
+ * documentation.
85
+ */
86
86
const editDistanceState = {
87
87
current : [ ] ,
88
88
prev : [ ] ,
@@ -3924,4 +3924,4 @@ if (typeof window !== "undefined") {
3924
3924
// exports.
3925
3925
initSearch ( new Map ( ) ) ;
3926
3926
}
3927
- } ) ( ) ;
3927
+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments