File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -703,11 +703,12 @@ pub enum Delimiter {
703
703
/// `[ ... ]`
704
704
#[ stable( feature = "proc_macro_lib2" , since = "1.29.0" ) ]
705
705
Bracket ,
706
- /// `Ø ... Ø `
706
+ /// `/*«*/ ... /*»*/ `
707
707
/// An invisible delimiter, that may, for example, appear around tokens coming from a
708
708
/// "macro variable" `$var`. It is important to preserve operator priorities in cases like
709
709
/// `$var * 3` where `$var` is `1 + 2`.
710
- /// Invisible delimiters might not survive roundtrip of a token stream through a string.
710
+ /// Invisible delimiters are not directly writable in normal Rust code except as comments.
711
+ /// Therefore, they might not survive a roundtrip of a token stream through a string.
711
712
#[ stable( feature = "proc_macro_lib2" , since = "1.29.0" ) ]
712
713
None ,
713
714
}
You can’t perform that action at this time.
0 commit comments