docs(lexer): fix doc comment (#8664)

The comment showing expansion of `ascii_byte_handler!` macro was inaccurate.
This commit is contained in:
overlookmotel 2025-01-22 16:22:32 +00:00
parent ae895d8c0e
commit 3be03926e8

View file

@ -108,7 +108,6 @@ macro_rules! byte_handler {
/// // SAFETY: This macro is only used for ASCII characters
/// unsafe {
/// use assert_unchecked::assert_unchecked;
/// let s = lexer.current.chars.as_str();
/// assert_unchecked!(!lexer.source.is_eof());
/// assert_unchecked!(lexer.source.peek_byte_unchecked() < 128);
/// }