File tree 1 file changed +6
-6
lines changed
src/librustdoc/html/static
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 41
41
42
42
// On the search screen, so you remain on the last tab you opened.
43
43
//
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 "
47
47
var currentTab = 0 ;
48
48
49
49
function hasClass ( elem , className ) {
1093
1093
output = '<h1>Results for ' + escape ( query . query ) +
1094
1094
( query . type ? ' (type: ' + escape ( query . type ) + ')' : '' ) + '</h1>' +
1095
1095
'<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 ) +
1099
1099
'</div><div id="results">' ;
1100
1100
1101
1101
output += addTab ( results [ 'others' ] , query ) ;
You can’t perform that action at this time.
0 commit comments