File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2239,7 +2239,7 @@ impl Default for Rc<str> {
2239
2239
#[ cfg( not( no_global_oom_handling) ) ]
2240
2240
#[ stable( feature = "more_rc_default_impls" , since = "CURRENT_RUSTC_VERSION" ) ]
2241
2241
impl < T > Default for Rc < [ T ] > {
2242
- /// Creates an empty [T] inside an Rc
2242
+ /// Creates an empty ` [T]` inside an Rc
2243
2243
#[ inline]
2244
2244
fn default ( ) -> Self {
2245
2245
let arr: [ T ; 0 ] = [ ] ;
Original file line number Diff line number Diff line change @@ -3311,7 +3311,7 @@ impl Default for Arc<str> {
3311
3311
#[ cfg( not( no_global_oom_handling) ) ]
3312
3312
#[ stable( feature = "more_rc_default_impls" , since = "CURRENT_RUSTC_VERSION" ) ]
3313
3313
impl < T > Default for Arc < [ T ] > {
3314
- /// Creates an empty [T] inside an Arc
3314
+ /// Creates an empty ` [T]` inside an Arc
3315
3315
#[ inline]
3316
3316
fn default ( ) -> Self {
3317
3317
let arr: [ T ; 0 ] = [ ] ;
You can’t perform that action at this time.
0 commit comments