Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
disable examples
  • Loading branch information
mateuszaaa committed Aug 9, 2021
commit bfc83d86462df42e4f5331254ab61b1ee5e3b605
4 changes: 2 additions & 2 deletions client/service/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ pub(crate) type JoinFuture = Pin<Box<dyn Future<Output = ()> + Send>>;
///
/// ## Using tokio
///
/// ```
/// ```ignore
/// # use sc_service::TaskExecutor;
/// use futures::future::FutureExt;
/// use tokio::runtime::Runtime;
Expand All @@ -289,7 +289,7 @@ pub(crate) type JoinFuture = Pin<Box<dyn Future<Output = ()> + Send>>;
///
/// ## Using async-std
///
/// ```
/// ```ignore
/// # use sc_service::TaskExecutor;
/// let task_executor: TaskExecutor = (|future, _task_type| {
/// // NOTE: async-std's JoinHandle is not a Result so we don't need to map the result
Expand Down