Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Fix typos
  • Loading branch information
stoeckmann committed Sep 30, 2025
commit 62e16e5b1376158a1fc013fa8b1a2830bf4bb78f
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ once_cell = "1"
pin-project-lite = "0.2.10"
smol = "2"

# rewrite dependencies to use the this version of async-task when running tests
# rewrite dependencies to use this version of async-task when running tests
[patch.crates-io]
async-task = { path = "." }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let (sender, receiver) = flume::unbounded();
```

A task is created using either `spawn()`, `spawn_local()`, or `spawn_unchecked()` which
return a `Runnable` and a `Task`:
returns a `Runnable` and a `Task`:

```rust
// A future that will be spawned.
Expand Down
2 changes: 1 addition & 1 deletion src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::utils::abort_on_panic;

/// Actions to take upon calling [`Header::drop_waker`].
pub(crate) enum DropWakerAction {
/// Re-schedule the task
/// Re-schedule the task.
Schedule,
/// Destroy the task.
Destroy,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! ```
//!
//! A task is created using either [`spawn()`], [`spawn_local()`], or [`spawn_unchecked()`] which
//! return a [`Runnable`] and a [`Task`]:
//! returns a [`Runnable`] and a [`Task`]:
//!
//! ```
//! # let (sender, receiver) = flume::unbounded();
Expand Down
2 changes: 1 addition & 1 deletion src/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl<F, T, S, M> RawTask<F, T, S, M> {
let align_union = max(layout_f.align(), layout_r.align());
let layout_union = Layout::from_size_align(size_union, align_union);

// Compute the layout for `Header` followed `S` and `union { F, T }`.
// Compute the layout for `Header` followed by `S` and `union { F, T }`.
let layout = layout_header;
let (layout, offset_s) = leap_unwrap!(layout.extend(layout_s));
let (layout, offset_union) = leap_unwrap!(layout.extend(layout_union));
Expand Down