Skip to content

Commit eb498ef

Browse files
committed
Merge proc_macro_span_shrink and proc_macro_span
1 parent 8b76a5b commit eb498ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proc_macro/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,13 +494,13 @@ impl Span {
494494
}
495495

496496
/// Creates an empty span pointing to directly before this span.
497-
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
497+
#[unstable(feature = "proc_macro_span", issue = "54725")]
498498
pub fn start(&self) -> Span {
499499
Span(self.0.start())
500500
}
501501

502502
/// Creates an empty span pointing to directly after this span.
503-
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
503+
#[unstable(feature = "proc_macro_span", issue = "54725")]
504504
pub fn end(&self) -> Span {
505505
Span(self.0.end())
506506
}

0 commit comments

Comments
 (0)