Skip to content

Commit f965e17

Browse files
authored
Merge pull request #453 from dtolnay/delimiternone
Sync documentation of Delimiter::None
2 parents da51f8d + 69fd060 commit f965e17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -678,12 +678,12 @@ pub enum Delimiter {
678678
Brace,
679679
/// `[ ... ]`
680680
Bracket,
681-
/// `Ø ... Ø`
681+
/// ` ... `
682682
///
683-
/// An implicit delimiter, that may, for example, appear around tokens
683+
/// An invisible delimiter, that may, for example, appear around tokens
684684
/// coming from a "macro variable" `$var`. It is important to preserve
685685
/// operator priorities in cases like `$var * 3` where `$var` is `1 + 2`.
686-
/// Implicit delimiters may not survive roundtrip of a token stream through
686+
/// Invisible delimiters may not survive roundtrip of a token stream through
687687
/// a string.
688688
None,
689689
}

0 commit comments

Comments
 (0)