Skip to content

Commit ad51c7a

Browse files
committed
fix link
1 parent 867f1ae commit ad51c7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

blog/boa-release-21/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ There has been a lot of progress made on Temporal, the new Stage 3
3636
date/time proposal. With this release, Boa's conformance on Temporal
3737
grew from 40.67% to ~97%. This implementation is backed by the `temporal_rs`
3838
date/time Rust library, which we went over in our announcement
39-
[blog post](../2025-09-24-temporal-release). Give the post a read if you are
39+
[blog post](../2025-09-24-temporal-release/index.md). Give the post a read if you are
4040
interested in `temporal_rs` and its development history.
4141

4242
### Span nodes and error backtraces
@@ -389,10 +389,10 @@ Note that this built-in requires having a "proper" implementation of a `JobExecu
389389
in the sense of "not blocking the whole thread waiting on a future to finish", which can be accomplished
390390
with [`FutureGroup`] and [`futures_lite::poll_once`][poll_once] if an async executor is not required
391391
(see [`SimpleJobExecutor`'s implementation][sje-impl]).
392-
This is because it heavily relies on `TimeoutJob` and `NativeAsyncJob` to timeout if a notification
393-
doesn't arrive and communicate with the notifier threads, respectively. This is the reason why
394-
we don't recommend just blocking on each received `Future`; that could cause
395-
`TimeoutJob`s to run much later than required, or even make it so that they don't
392+
This is because it heavily relies on `TimeoutJob` to timeout if a notification
393+
doesn't arrive, and in `NativeAsyncJob` to communicate with the notifier threads using an
394+
async channel. This is the reason why we don't recommend just blocking on each received `Future`;
395+
that could cause `TimeoutJob`s to run much later than required, or even make it so that they don't
396396
run at all!
397397

398398
[poll_once]: https://docs.rs/futures-lite/latest/futures_lite/future/fn.poll_once.html

0 commit comments

Comments
 (0)