From e6bdfd4c899b739bc6551bcba9123f9c2feecb4f Mon Sep 17 00:00:00 2001 From: Dunqing <29533304+Dunqing@users.noreply.github.com> Date: Fri, 12 Jun 2026 06:05:18 +0000 Subject: [PATCH] docs(lexer): correct reference link for `byte_handlers!` (#23313) https://github.com/oxc-project/oxc/pull/7298 changed from `master` to the `0.7.0` tag, but there are significant differences in between. This PR updates to the commit that points to the last commit in the master branch. --- crates/oxc_parser/src/lexer/byte_handlers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_parser/src/lexer/byte_handlers.rs b/crates/oxc_parser/src/lexer/byte_handlers.rs index 8588561b6506b..2312cb119bcff 100644 --- a/crates/oxc_parser/src/lexer/byte_handlers.rs +++ b/crates/oxc_parser/src/lexer/byte_handlers.rs @@ -29,7 +29,7 @@ pub type ByteHandler = unsafe fn(&mut Lexer<'_, C>) -> Kind; pub type ByteHandlers = [ByteHandler; 256]; /// Macro to create a lookup table mapping any incoming byte to a handler function defined below. -/// +/// #[rustfmt::skip] macro_rules! byte_handlers { () => {