@@ -36,7 +36,7 @@ There has been a lot of progress made on Temporal, the new Stage 3
3636date/time proposal. With this release, Boa's conformance on Temporal
3737grew from 40.67% to ~ 97%. This implementation is backed by the ` temporal_rs `
3838date/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
4040interested 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
389389in the sense of "not blocking the whole thread waiting on a future to finish", which can be accomplished
390390with [ ` 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
396396run at all!
397397
398398[ poll_once ] : https://docs.rs/futures-lite/latest/futures_lite/future/fn.poll_once.html
0 commit comments