From 45581c451a440776fd59576d7b27c366b1528724 Mon Sep 17 00:00:00 2001 From: rakita Date: Mon, 9 Dec 2024 12:47:13 +0100 Subject: [PATCH] chore: mdbook links check (#1906) --- documentation/src/crates/revm/handler.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/documentation/src/crates/revm/handler.md b/documentation/src/crates/revm/handler.md index 3ab714696b..43ede26943 100644 --- a/documentation/src/crates/revm/handler.md +++ b/documentation/src/crates/revm/handler.md @@ -4,11 +4,11 @@ This is the logic part of the Evm. It contains the Specification ID, list of functions that do the logic and list of registers that can change behavior of the Handler when it is build. Functions can be grouped in five categories and are marked in that way in the code: -* Validation functions: [`ValidationHandler`](https://github.com/bluealloy/revm/blob/main/crates/revm/src/handler/handle_types/validation.rs) -* Pre-execution functions: [`PreExecutionHandler`](https://github.com/bluealloy/revm/blob/main/crates/revm/src/handler/handle_types/pre_execution.rs) -* Execution functions: [`ExecutionHandler`](https://github.com/bluealloy/revm/blob/main/crates/revm/src/handler/handle_types/execution.rs) -* Post-execution functions: [`PostExecutionHandler`](https://github.com/bluealloy/revm/blob/main/crates/revm/src/handler/handle_types/post_execution.rs) -* Instruction table: [`InstructionTable`](https://github.com/bluealloy/revm/blob/main/crates/interpreter/src/table.rs) +* Validation functions: ValidationHandler +* Pre-execution functions: PreExecutionHandler +* Execution functions: ExecutionHandler +* Post-execution functions: PostExecutionHandler +* Instruction table: InstructionTable ### Handle Registers