Skip to content

Commit 55bc088

Browse files
committed
Subtle copy improvements
1 parent 08423c2 commit 55bc088

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

_posts/2025-07-25-the-extensibility-api.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ performance.mark('jsEnd', {
156156
});
157157
```
158158

159-
We’re forgoing anything else for now, but this is the first step into adopting
160-
the Extensibility API for `performance.mark()`:
159+
We’re forgoing anything else for now, but this is the first step to adopting the
160+
Extensibility API for `performance.mark()`:
161161

162162

163163
<figure>
@@ -278,7 +278,7 @@ performance.mark('jsEnd', {
278278
});
279279
```
280280

281-
To be honest, this is no better, and certainly no more convenient than just
281+
To be honest, this is no better, and certainly no more convenient, than just
282282
using a different string in place of `jsEnd`—this text hasn’t produced
283283
a tooltip, but rather just replaced the marker’s text.
284284

@@ -318,7 +318,7 @@ sure you can think of your own useful use-cases.
318318
<figcaption>Note the custom data that now appears in the <i>Summary</i> pane.</figcaption>
319319
</figure>
320320

321-
All of the features I just showed you, `color`, `tooltipText`, and `properties`
321+
All of the features I just showed you (`color`, `tooltipText`, and `properties`)
322322
apply equally to `performance.measure()`, so let’s leap ahead and bring our
323323
`performance.measure()` example up to date in one go:
324324

@@ -429,7 +429,7 @@ Now we have a track _group_ called _First Party_ which contains both a _CSS_ and
429429
a _JS_ sub-track!
430430

431431
I hope you can already begin to imagine and envision use-cases for tracks and
432-
track groups. If you’re using profiling and instrumenting your application with
432+
track groups. If you’re profiling and instrumenting your application with
433433
`performance.mark()` and `performance.measure()` already, the idea of getting it
434434
all organised surely excites you!
435435

@@ -484,7 +484,8 @@ don’t worry about that until you’ve got the mechanism dialled in.
484484

485485
If you work on a framework or a third party that instruments its own User
486486
Timings, please consider moving them into your own track group. It would be nice
487-
to see, for example, Next.js route-change or hydration timings in its own track.
487+
to see, for example, Next.js route-change or hydration timings in their own
488+
place.
488489

489490
## Appendix
490491

0 commit comments

Comments
 (0)