From fc90c5fb5cdf1c6f6b360ddfe15ee9cd45b63995 Mon Sep 17 00:00:00 2001 From: Mike Mulchrone Date: Fri, 10 Feb 2023 21:11:16 -0500 Subject: [PATCH] docs: fix minor typo in AsyncRefCell comment (#17732) --- core/async_cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/async_cell.rs b/core/async_cell.rs index a5b8d5467d..0f173ed17c 100644 --- a/core/async_cell.rs +++ b/core/async_cell.rs @@ -257,7 +257,7 @@ mod internal { use std::pin::Pin; impl AsyncRefCell { - /// Borrow the cell's contents synchronouslym without creating an + /// Borrow the cell's contents synchronously without creating an /// intermediate future. If the cell has already been borrowed and either /// the existing or the requested borrow is exclusive, this function returns /// `None`.