diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-12-09 11:02:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 17:02:07 +0100 |
commit | b6dd850f71c029a3d82eb10c2528380b0ed4bc71 (patch) | |
tree | 3ad1bcaba9e349066627cacd2a24ddb9aa52f364 /core/async_cell.rs | |
parent | d492fb0eac8296513f003cf32edf80ec99bf8f2b (diff) |
build: fix doctests, run cargo publish --dry-run (#8689)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core/async_cell.rs')
-rw-r--r-- | core/async_cell.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/async_cell.rs b/core/async_cell.rs index bf62692ed..d11b83932 100644 --- a/core/async_cell.rs +++ b/core/async_cell.rs @@ -109,7 +109,7 @@ impl<T> RcRef<AsyncRefCell<T>> { /// /// ```rust /// # use std::rc::Rc; -/// # use deno_core::async_cell::RcRef; +/// # use deno_core::RcRef; /// /// struct Stuff { /// foo: u32, |