Skip to content

Commit b06fb3c

Browse files
committed
Doc headers
1 parent 50b31f9 commit b06fb3c

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

docs/performance/getting-started.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,29 @@ ngOnInit() {
5555

5656
The most basic operator, `trace` will measure the amount of time it takes for your observable to either complete or emit its first value. Beyond the basic trace there are several other operators:
5757

58-
### `traceUntil(name: string, test: (T) => Boolean, options?: TraceOptions & { orComplete?: true })`
58+
<h3>
59+
<pre>
60+
traceUntil(
61+
name: string,
62+
test: (T) => Boolean,
63+
options?: TraceOptions & { orComplete?: true }
64+
)
65+
</pre>
66+
</h3>
5967

6068
Trace the observable until the first emission that passes the provided test.
6169

6270
If the `orComplete` option is passed it will complete the trace when the observable completes, even if an emission never passed the provided test.
6371

64-
### `traceWhile(name: string, test: (T) => Boolean, options?: TraceOptions & { orComplete?: true})`
72+
<h3>
73+
<pre>
74+
traceWhile(
75+
name: string,
76+
test: (T) => Boolean,
77+
options?: TraceOptions & { orComplete?: true }
78+
)
79+
</pre>
80+
</h3>
6581

6682
Starting with an emission that passes the provided test, trace until an emission fails the test.
6783

0 commit comments

Comments
 (0)