aboutsummaryrefslogtreecommitdiff
path: root/book/en
diff options
context:
space:
mode:
authorCyril Marpaud <9333398+cyril-marpaud@users.noreply.github.com>2025-10-28 22:12:44 +0100
committerHenrik Tjäder <henrik@tjaders.com>2025-10-29 19:44:25 +0000
commitc305c18db0855e8fdf300ec2227b3b3410713646 (patch)
treefe05b6f31add8089a58f9ccad4a271741e2e032a /book/en
parentdbc5d3ceca739d1cb9e914fb8d47b7672dd4b04e (diff)
Fix typo in monotonics migration documentation
Diffstat (limited to 'book/en')
-rw-r--r--book/en/src/migration_v1_v2/monotonics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/migration_v1_v2/monotonics.md b/book/en/src/migration_v1_v2/monotonics.md
index 4baa14c..c23f8ba 100644
--- a/book/en/src/migration_v1_v2/monotonics.md
+++ b/book/en/src/migration_v1_v2/monotonics.md
@@ -4,7 +4,7 @@ In previous versions of `rtic`, monotonics were an integral, tightly coupled par
The `#[monotonic]` attribute is no longer used. Instead, you use a `create_X_token` from [`rtic-monotonics`]. An invocation of this macro returns an interrupt registration token, which can be used to construct an instance of your desired monotonic.
-`spawn_after` and `spawn_at` are no longer available. Instead, you use the async functions `delay` and `delay_until` provided by ipmlementations of the `rtic_time::Monotonic` trait, available through [`rtic-monotonics`].
+`spawn_after` and `spawn_at` are no longer available. Instead, you use the async functions `delay` and `delay_until` provided by implementations of the `rtic_time::Monotonic` trait, available through [`rtic-monotonics`].
Check out the [code example](./complete_example.md) for an overview of the required changes.