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 42
42
43
43
// On the search screen, so you remain on the last tab you opened.
44
44
//
45
- // 0 for "Types/modules "
46
- // 1 for "As parameters "
47
- // 2 for "As return value "
45
+ // 0 for "In Names "
46
+ // 1 for "In Parameters "
47
+ // 2 for "In Return Types "
48
48
var currentTab = 0 ;
49
49
50
50
function hasClass ( elem , className ) {
1196
1196
output = '<h1>Results for ' + escape ( query . query ) +
1197
1197
( query . type ? ' (type: ' + escape ( query . type ) + ')' : '' ) + '</h1>' +
1198
1198
'<div id="titles">' +
1199
- makeTabHeader ( 0 , "Types/modules " , results [ 'others' ] . length ) +
1200
- makeTabHeader ( 1 , "As parameters " , results [ 'in_args' ] . length ) +
1201
- makeTabHeader ( 2 , "As return value " , results [ 'returned' ] . length ) +
1199
+ makeTabHeader ( 0 , "In Names " , results [ 'others' ] . length ) +
1200
+ makeTabHeader ( 1 , "In Parameters " , results [ 'in_args' ] . length ) +
1201
+ makeTabHeader ( 2 , "In Return Types " , results [ 'returned' ] . length ) +
1202
1202
'</div><div id="results">' ;
1203
1203
1204
1204
output += addTab ( results [ 'others' ] , query ) ;
You can’t perform that action at this time.
0 commit comments