Skip to content

Commit cdc2c7b

Browse files
committed
Add tracking issue number to proc_macro_span_shrink.
1 parent 9298449 commit cdc2c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proc_macro/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,13 +359,13 @@ impl Span {
359359
}
360360

361361
/// Creates an empty span pointing to directly before this span.
362-
#[unstable(feature = "proc_macro_span_shrink", issue = "none")]
362+
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
363363
pub fn before(&self) -> Span {
364364
Span(self.0.before())
365365
}
366366

367367
/// Creates an empty span pointing to directly after this span.
368-
#[unstable(feature = "proc_macro_span_shrink", issue = "none")]
368+
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
369369
pub fn after(&self) -> Span {
370370
Span(self.0.after())
371371
}

0 commit comments

Comments
 (0)