File tree 1 file changed +3
-2
lines changed
src/librustdoc/html/static/js
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1986,7 +1986,8 @@ class DocSearch {
1986
1986
name + "/index.html" ;
1987
1987
} else if ( type === "import" ) {
1988
1988
displayPath = item . path + "::" ;
1989
- href = this . rootPath + item . path . replace ( / : : / g, "/" ) + "/index.html#reexport." + name ;
1989
+ href = this . rootPath + item . path . replace ( / : : / g, "/" ) +
1990
+ "/index.html#reexport." + name ;
1990
1991
} else if ( type === "primitive" || type === "keyword" ) {
1991
1992
displayPath = "" ;
1992
1993
href = this . rootPath + path . replace ( / : : / g, "/" ) +
@@ -2030,7 +2031,7 @@ class DocSearch {
2030
2031
"/" + type + "." + name + ".html" ;
2031
2032
}
2032
2033
return [ displayPath , href , `${ exactPath } ::${ name } ` ] ;
2033
- }
2034
+ } ;
2034
2035
2035
2036
function pathSplitter ( path ) {
2036
2037
const tmp = "<span>" + path . replace ( / : : / g, "::</span><span>" ) ;
You can’t perform that action at this time.
0 commit comments