summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMike Mulchrone <mtmulch0191@outlook.com>2023-02-10 21:11:16 -0500
committerGitHub <noreply@github.com>2023-02-11 02:11:16 +0000
commitfc90c5fb5cdf1c6f6b360ddfe15ee9cd45b63995 (patch)
treecb1f01c6c0611a717163e3844237819d23427cc9 /core
parentcf06a7c7e672880e1b38598fe445e2c50b4a9d06 (diff)
docs: fix minor typo in AsyncRefCell comment (#17732)
Diffstat (limited to 'core')
-rw-r--r--core/async_cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/async_cell.rs b/core/async_cell.rs
index a5b8d5467..0f173ed17 100644
--- a/core/async_cell.rs
+++ b/core/async_cell.rs
@@ -257,7 +257,7 @@ mod internal {
use std::pin::Pin;
impl<T> AsyncRefCell<T> {
- /// 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`.