@@ -2059,7 +2059,7 @@ fn item_module(w: &mut fmt::Formatter, cx: &Context,
2059
2059
curty = myty;
2060
2060
let ( short, name) = match myty. unwrap ( ) {
2061
2061
ItemType :: ExternCrate |
2062
- ItemType :: Import => ( "reexports" , "Reexports " ) ,
2062
+ ItemType :: Import => ( "reexports" , "Re-exports " ) ,
2063
2063
ItemType :: Module => ( "modules" , "Modules" ) ,
2064
2064
ItemType :: Struct => ( "structs" , "Structs" ) ,
2065
2065
ItemType :: Union => ( "unions" , "Unions" ) ,
@@ -3959,7 +3959,7 @@ fn sidebar_module(fmt: &mut fmt::Formatter, _it: &clean::Item,
3959
3959
it. type_ ( ) == ItemType :: Import ) {
3960
3960
sidebar. push_str ( & format ! ( "<li><a href=\" #{id}\" >{name}</a></li>" ,
3961
3961
id = "reexports" ,
3962
- name = "Reexports " ) ) ;
3962
+ name = "Re-exports " ) ) ;
3963
3963
}
3964
3964
3965
3965
// ordering taken from item_module, reorder, where it prioritized elements in a certain order
@@ -3972,7 +3972,7 @@ fn sidebar_module(fmt: &mut fmt::Formatter, _it: &clean::Item,
3972
3972
if items. iter ( ) . any ( |it| !it. is_stripped ( ) && it. type_ ( ) == myty) {
3973
3973
let ( short, name) = match myty {
3974
3974
ItemType :: ExternCrate |
3975
- ItemType :: Import => ( "reexports" , "Reexports " ) ,
3975
+ ItemType :: Import => ( "reexports" , "Re-exports " ) ,
3976
3976
ItemType :: Module => ( "modules" , "Modules" ) ,
3977
3977
ItemType :: Struct => ( "structs" , "Structs" ) ,
3978
3978
ItemType :: Union => ( "unions" , "Unions" ) ,
0 commit comments