From 27a0a0de0bd057cada658766e14c2485ad370558 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 14 Jul 2025 21:33:57 +0300 Subject: [PATCH] Fix doc test --- crates/node-interaction/src/blocking_executor.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index 8d882f4..53123b5 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -21,7 +21,9 @@ use tokio::{ /// and unbounded to specific tasks or return types. The following is an example of using this /// executor to drive an async computation: /// -/// ```rust,no_run +/// ```rust +/// use revive_dt_node_interaction::*; +/// /// fn blocking_function() { /// let result = BlockingExecutor::execute(async move { /// tokio::time::sleep(std::time::Duration::from_secs(1)).await;