summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`.