Skip to content

Commit

Permalink
Fix doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRega committed Mar 22, 2023
1 parent 4c17add commit e2b56f5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/lazyvalue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ use tokio::sync::mpsc::{channel, Receiver, Sender};
/// // Also, we can use all of DirectCacheAccess:
/// let current_cache = lazy_promise.get_value();
/// let current_cache_mut = lazy_promise.get_value_mut();
/// let current_cache_value = lazy_promise.take_inner();
/// }
/// ```
///
Expand Down
1 change: 0 additions & 1 deletion src/lazyvec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ use tokio::sync::mpsc::{channel, Receiver, Sender};
/// // Also, we can use DirectCacheAccess:
/// let current_cache = lazy_promise.get_value();
/// let current_cache_mut = lazy_promise.get_value_mut();
/// let current_cache_value = lazy_promise.take_inner();
/// }
/// ```
///
Expand Down

0 comments on commit e2b56f5

Please sign in to comment.