File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/librustdoc/html/static Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 4141
4242 // On the search screen, so you remain on the last tab you opened.
4343 //
44- // 0 for "In name "
45- // 1 for "As parameters "
46- // 2 for "As return value "
44+ // 0 for "In Names "
45+ // 1 for "In Parameters "
46+ // 2 for "In Return Types "
4747 var currentTab = 0 ;
4848
4949 function hasClass ( elem , className ) {
10931093 output = '<h1>Results for ' + escape ( query . query ) +
10941094 ( query . type ? ' (type: ' + escape ( query . type ) + ')' : '' ) + '</h1>' +
10951095 '<div id="titles">' +
1096- makeTabHeader ( 0 , "In name " , results [ 'others' ] . length ) +
1097- makeTabHeader ( 1 , "As parameters " , results [ 'in_args' ] . length ) +
1098- makeTabHeader ( 2 , "As return value " , results [ 'returned' ] . length ) +
1096+ makeTabHeader ( 0 , "In Names " , results [ 'others' ] . length ) +
1097+ makeTabHeader ( 1 , "In Parameters " , results [ 'in_args' ] . length ) +
1098+ makeTabHeader ( 2 , "In Return Types " , results [ 'returned' ] . length ) +
10991099 '</div><div id="results">' ;
11001100
11011101 output += addTab ( results [ 'others' ] , query ) ;
You can’t perform that action at this time.
0 commit comments