File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2475,21 +2475,21 @@ impl<'a> Drain<'a> {
2475
2475
/// let _ = drain.next().unwrap();
2476
2476
/// assert_eq!(drain.as_str(), "bc");
2477
2477
/// ```
2478
- #[ unstable( feature = "string_drain_as_str" , issue = "none " ) ] // Note: uncomment AsRef impls below when stabilizing.
2478
+ #[ unstable( feature = "string_drain_as_str" , issue = "76905 " ) ] // Note: uncomment AsRef impls below when stabilizing.
2479
2479
pub fn as_str ( & self ) -> & str {
2480
2480
self . iter . as_str ( )
2481
2481
}
2482
2482
}
2483
2483
2484
2484
// Uncomment when stabilizing `string_drain_as_str`.
2485
- // #[unstable(feature = "string_drain_as_str", issue = "none ")]
2485
+ // #[unstable(feature = "string_drain_as_str", issue = "76905 ")]
2486
2486
// impl<'a> AsRef<str> for Drain<'a> {
2487
2487
// fn as_ref(&self) -> &str {
2488
2488
// self.as_str()
2489
2489
// }
2490
2490
// }
2491
2491
//
2492
- // #[unstable(feature = "string_drain_as_str", issue = "none ")]
2492
+ // #[unstable(feature = "string_drain_as_str", issue = "76905 ")]
2493
2493
// impl<'a> AsRef<[u8]> for Drain<'a> {
2494
2494
// fn as_ref(&self) -> &[u8] {
2495
2495
// self.as_str().as_bytes()
You can’t perform that action at this time.
0 commit comments