File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -343,15 +343,15 @@ pub trait Extend<A> {
343343 fn extend < T : IntoIterator < Item = A > > ( & mut self , iter : T ) ;
344344
345345 /// Extends a collection with exactly one element.
346- #[ unstable( feature = "extend_one" , issue = "none " ) ]
346+ #[ unstable( feature = "extend_one" , issue = "72631 " ) ]
347347 fn extend_one ( & mut self , item : A ) {
348348 self . extend ( Some ( item) ) ;
349349 }
350350
351351 /// Reserves capacity in a collection for the given number of additional elements.
352352 ///
353353 /// The default implementation does nothing.
354- #[ unstable( feature = "extend_one" , issue = "none " ) ]
354+ #[ unstable( feature = "extend_one" , issue = "72631 " ) ]
355355 fn extend_reserve ( & mut self , additional : usize ) {
356356 let _ = additional;
357357 }
You can’t perform that action at this time.
0 commit comments