Skip to content

Commit c33de9c

Browse files
committed
Stabilize span_open() and span_close().
1 parent 741cca3 commit c33de9c

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
@@ -707,7 +707,7 @@ impl Group {
707707
/// pub fn span_open(&self) -> Span {
708708
/// ^
709709
/// ```
710-
#[unstable(feature = "proc_macro_span", issue = "54725")]
710+
#[stable(feature = "proc_macro_group_span", since = "1.55.0")]
711711
pub fn span_open(&self) -> Span {
712712
Span(self.0.span_open())
713713
}
@@ -718,7 +718,7 @@ impl Group {
718718
/// pub fn span_close(&self) -> Span {
719719
/// ^
720720
/// ```
721-
#[unstable(feature = "proc_macro_span", issue = "54725")]
721+
#[stable(feature = "proc_macro_group_span", since = "1.55.0")]
722722
pub fn span_close(&self) -> Span {
723723
Span(self.0.span_close())
724724
}

0 commit comments

Comments
 (0)