Skip to content

Commit

Permalink
Merge pull request #1518 from Vanille-N/master
Browse files Browse the repository at this point in the history
Absolute path to `bool` in `custom_punctuation.rs`
  • Loading branch information
dtolnay authored Oct 5, 2023
2 parents 7313d24 + 6701e60 commit abd2c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom_punctuation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ macro_rules! custom_punctuation {
macro_rules! impl_parse_for_custom_punctuation {
($ident:ident, $($tt:tt)+) => {
impl $crate::token::CustomToken for $ident {
fn peek(cursor: $crate::buffer::Cursor) -> bool {
fn peek(cursor: $crate::buffer::Cursor) -> $crate::__private::bool {
$crate::__private::peek_punct(cursor, $crate::stringify_punct!($($tt)+))
}

Expand Down

0 comments on commit abd2c21

Please sign in to comment.