@@ -36,7 +36,7 @@ There has been a lot of progress made on Temporal, the new Stage 3
36
36
date/time proposal. With this release, Boa's conformance on Temporal
37
37
grew from 40.67% to ~ 97%. This implementation is backed by the ` temporal_rs `
38
38
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
40
40
interested in ` temporal_rs ` and its development history.
41
41
42
42
### Span nodes and error backtraces
@@ -389,10 +389,10 @@ Note that this built-in requires having a "proper" implementation of a `JobExecu
389
389
in the sense of "not blocking the whole thread waiting on a future to finish", which can be accomplished
390
390
with [ ` FutureGroup ` ] and [ ` futures_lite::poll_once ` ] [ poll_once ] if an async executor is not required
391
391
(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
396
396
run at all!
397
397
398
398
[ poll_once ] : https://docs.rs/futures-lite/latest/futures_lite/future/fn.poll_once.html
0 commit comments