diff --git a/library/proc_macro/src/lib.rs b/library/proc_macro/src/lib.rs index b8ed3372aff..6de61497021 100644 --- a/library/proc_macro/src/lib.rs +++ b/library/proc_macro/src/lib.rs @@ -359,13 +359,13 @@ impl Span { } /// Creates an empty span pointing to directly before this span. - #[unstable(feature = "proc_macro_span_shrink", issue = "none")] + #[unstable(feature = "proc_macro_span_shrink", issue = "87552")] pub fn before(&self) -> Span { Span(self.0.before()) } /// Creates an empty span pointing to directly after this span. - #[unstable(feature = "proc_macro_span_shrink", issue = "none")] + #[unstable(feature = "proc_macro_span_shrink", issue = "87552")] pub fn after(&self) -> Span { Span(self.0.after()) }