Skip to content

Commit a51b22a

Browse files
committed
Add extend_one tracking issue 72631
1 parent 10efaa3 commit a51b22a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/iter/traits/collect.rs

+2-2
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)