mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
docs: fix minor typo in AsyncRefCell comment (#17732)
This commit is contained in:
parent
cf06a7c7e6
commit
fc90c5fb5c
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ mod internal {
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
|
|
||||||
impl<T> AsyncRefCell<T> {
|
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
|
/// intermediate future. If the cell has already been borrowed and either
|
||||||
/// the existing or the requested borrow is exclusive, this function returns
|
/// the existing or the requested borrow is exclusive, this function returns
|
||||||
/// `None`.
|
/// `None`.
|
||||||
|
|
Loading…
Reference in a new issue