Skip to content

Commit

Permalink
Sync documentation of Delimiter::None
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 17, 2024
1 parent da51f8d commit 69fd060
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 69fd060

Please sign in to comment.