@@ -2321,8 +2321,8 @@ fn item_function(w: &mut Buffer, cx: &Context, it: &clean::Item, f: &clean::Func
2321
2321
"{}{}{}{}{:#}fn {}{:#}" ,
2322
2322
it. visibility. print_with_space( ) ,
2323
2323
f. header. constness. print_with_space( ) ,
2324
- f. header. unsafety. print_with_space( ) ,
2325
2324
f. header. asyncness. print_with_space( ) ,
2325
+ f. header. unsafety. print_with_space( ) ,
2326
2326
print_abi_with_space( f. header. abi) ,
2327
2327
it. name. as_ref( ) . unwrap( ) ,
2328
2328
f. generics. print( )
@@ -2332,12 +2332,12 @@ fn item_function(w: &mut Buffer, cx: &Context, it: &clean::Item, f: &clean::Func
2332
2332
render_attributes ( w, it, false ) ;
2333
2333
write ! (
2334
2334
w,
2335
- "{vis}{constness}{unsafety}{asyncness }{abi}fn \
2335
+ "{vis}{constness}{asyncness}{unsafety }{abi}fn \
2336
2336
{name}{generics}{decl}{where_clause}</pre>",
2337
2337
vis = it. visibility. print_with_space( ) ,
2338
2338
constness = f. header. constness. print_with_space( ) ,
2339
- unsafety = f. header. unsafety. print_with_space( ) ,
2340
2339
asyncness = f. header. asyncness. print_with_space( ) ,
2340
+ unsafety = f. header. unsafety. print_with_space( ) ,
2341
2341
abi = print_abi_with_space( f. header. abi) ,
2342
2342
name = it. name. as_ref( ) . unwrap( ) ,
2343
2343
generics = f. generics. print( ) ,
@@ -2832,8 +2832,8 @@ fn render_assoc_item(
2832
2832
"{}{}{}{}{}{:#}fn {}{:#}" ,
2833
2833
meth. visibility. print_with_space( ) ,
2834
2834
header. constness. print_with_space( ) ,
2835
- header. unsafety. print_with_space( ) ,
2836
2835
header. asyncness. print_with_space( ) ,
2836
+ header. unsafety. print_with_space( ) ,
2837
2837
print_default_space( meth. is_default( ) ) ,
2838
2838
print_abi_with_space( header. abi) ,
2839
2839
name,
@@ -2854,8 +2854,8 @@ fn render_assoc_item(
2854
2854
if parent == ItemType :: Trait { " " } else { "" } ,
2855
2855
meth. visibility. print_with_space( ) ,
2856
2856
header. constness. print_with_space( ) ,
2857
- header. unsafety. print_with_space( ) ,
2858
2857
header. asyncness. print_with_space( ) ,
2858
+ header. unsafety. print_with_space( ) ,
2859
2859
print_default_space( meth. is_default( ) ) ,
2860
2860
print_abi_with_space( header. abi) ,
2861
2861
href = href,
0 commit comments