Skip to content

Commit

Permalink
remove use of "we"
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw authored Sep 30, 2021
1 parent 7ce6b2c commit 624ecd7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tracing/src/instrument.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,9 @@ pub trait WithCollector: Sized {
/// // run on a different thread, in a different default collector's context.
/// tokio::spawn(future);
///
/// // However, if we call `with_current_collector` on the future before
/// // spawning it, we can ensure that the current thread's default
/// // collector is propagated to the spawned task, regardless of where
/// // it executes:
/// // However, calling `with_current_collector` on the future before
/// // spawning it, ensures that the current thread's default collector is
/// // propagated to the spawned task, regardless of where it executes:
/// # let future = async { };
/// tokio::spawn(future.with_current_collector());
/// # }
Expand Down

0 comments on commit 624ecd7

Please sign in to comment.