From 4910428f1a02027d98dc0ec2a702d7a608e5f334 Mon Sep 17 00:00:00 2001 From: meteorgan Date: Mon, 25 Nov 2024 21:38:25 +0800 Subject: [PATCH] fix typo --- core/src/layers/blocking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/layers/blocking.rs b/core/src/layers/blocking.rs index a68538ec6dec..6972849799d5 100644 --- a/core/src/layers/blocking.rs +++ b/core/src/layers/blocking.rs @@ -59,7 +59,7 @@ use crate::*; /// ## In async context with blocking functions /// /// If `BlockingLayer` is called in blocking function, please fetch a [`tokio::runtime::EnterGuard`] -/// first. You can use [`Handle::try_current`] first to get the handle and than call [`Handle::enter`]. +/// first. You can use [`Handle::try_current`] first to get the handle and then call [`Handle::enter`]. /// This often happens in the case that async function calls blocking function. /// /// ```rust,no_run