Skip to content

Commit

Permalink
chore: Fix typo (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Sep 8, 2024
1 parent d4480b6 commit ce936c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl<T, M> Task<T, M> {
///
/// let ex = Executor::new();
///
/// // Spawn a deamon future.
/// // Spawn a daemon future.
/// ex.spawn(async {
/// loop {
/// println!("I'm a daemon task looping forever.");
Expand Down Expand Up @@ -108,7 +108,7 @@ impl<T, M> Task<T, M> {
///
/// let ex = Executor::new();
///
/// // Spawn a deamon future.
/// // Spawn a daemon future.
/// let task = ex.spawn(async {
/// loop {
/// println!("Even though I'm in an infinite loop, you can still cancel me!");
Expand Down Expand Up @@ -488,7 +488,7 @@ impl<T, M> FallibleTask<T, M> {
///
/// let ex = Executor::new();
///
/// // Spawn a deamon future.
/// // Spawn a daemon future.
/// ex.spawn(async {
/// loop {
/// println!("I'm a daemon task looping forever.");
Expand Down Expand Up @@ -520,7 +520,7 @@ impl<T, M> FallibleTask<T, M> {
///
/// let ex = Executor::new();
///
/// // Spawn a deamon future.
/// // Spawn a daemon future.
/// let task = ex.spawn(async {
/// loop {
/// println!("Even though I'm in an infinite loop, you can still cancel me!");
Expand Down

0 comments on commit ce936c7

Please sign in to comment.