Skip to content

Commit

Permalink
Merge pull request #453 from dtolnay/delimiternone
Browse files Browse the repository at this point in the history
Sync documentation of Delimiter::None
  • Loading branch information
dtolnay committed Apr 17, 2024
2 parents da51f8d + 69fd060 commit f965e17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Expand Up @@ -678,12 +678,12 @@ pub enum Delimiter {
Brace,
/// `[ ... ]`
Bracket,
/// `Ø ... Ø`
/// ` ... `
///
/// An implicit delimiter, that may, for example, appear around tokens
/// An invisible delimiter, that may, for example, appear around tokens
/// coming from a "macro variable" `$var`. It is important to preserve
/// operator priorities in cases like `$var * 3` where `$var` is `1 + 2`.
/// Implicit delimiters may not survive roundtrip of a token stream through
/// Invisible delimiters may not survive roundtrip of a token stream through
/// a string.
None,
}
Expand Down

0 comments on commit f965e17

Please sign in to comment.