Skip to content

Commit 9cffdc0

Browse files
authored
Fix link to user and fix small redaction error (#135)
1 parent 73335af commit 9cffdc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

blog/2024-03-07-boa-release-18.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Temporal, feel free to check out `temporal_rs`'s [issues](https://github.com/boa
125125
Over the past 7 months there has been some effort poured into an improved implementation of RegExp.
126126
This includes:
127127

128-
- Support for [`RegExp.prototype.hasIndices`] (Thanks to @dirkdev98!).
128+
- Support for [`RegExp.prototype.hasIndices`] (Thanks to [@dirkdev98](https://github.com/dirkdev98)!).
129129
- Support for Unicode sets, aka the `v` flag.
130130
- Support for UTF-16 text searches.
131131
- General fixes around `RegExp()`, `RegExp.toString()` and `RegExp.match()`.
@@ -617,9 +617,9 @@ fn main() -> eyre::Result<()> {
617617

618618
Why not call it `JsSendError` instead of `JsErasedError`? Well, it is generally not possible to
619619
convert a `JsError` into a `JsErasedError` without losing some information in the conversion. However,
620-
`JsSendError` gave the appearance of being `JsError` but `Send`, which is really not true. Hence,
621-
we decided to call it `JsErasedError` to emphasize that the conversion is not lossless. Though, feel
622-
free to ping us if you have a better name for it!
620+
`JsSendError` gave the appearance of being `JsError` but `Send`, which is really not true. `JsErasedError`,
621+
on the other hand, makes it clear the conversion is not lossless. Feel free to ping us if you have a
622+
better name for it though!
623623

624624
## Optimizations
625625

0 commit comments

Comments
 (0)