From 37b80cbfa334bd04c2e0835e839c90ea8ea869cd Mon Sep 17 00:00:00 2001 From: Belloabraham121 Date: Mon, 2 Feb 2026 01:30:23 +0100 Subject: [PATCH] docs: fix markdown formatting in log parsing example The triple backticks were missing the language annotation, causing potential rendering issues in documentation. Adding `text` ensures correct syntax highlighting for the WASM example. --- codegen/src/visitor/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/src/visitor/log.rs b/codegen/src/visitor/log.rs index 0f0e4fe95..706b2657f 100644 --- a/codegen/src/visitor/log.rs +++ b/codegen/src/visitor/log.rs @@ -6,7 +6,7 @@ impl Function { /// Parse log data from the bytecode. /// /// WASM example: - /// ``` + /// ```text /// i32.const 1048576 ;; offset /// i32.const 4 ;; 4 bytes /// ```