Skip to content

Commit 514bdad

Browse files
authored
Fix typo in Task docs (#21323)
# Objective Fix typo in `Task` docs ## Solution Get rid of that pesky `s`
1 parent 0b8844a commit 514bdad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_tasks/src/task.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::cfg;
1111
///
1212
/// Tasks are also futures themselves and yield the output of the spawned future.
1313
///
14-
/// When a task is dropped, its gets canceled and won't be polled again. To cancel a task a bit
14+
/// When a task is dropped, it gets canceled and won't be polled again. To cancel a task a bit
1515
/// more gracefully and wait until it stops running, use the [`Task::cancel()`] method.
1616
///
1717
/// Tasks that panic get immediately canceled. Awaiting a canceled task also causes a panic.

0 commit comments

Comments
 (0)