docs(aio): Fixed typo in 'comparing observables -> Observabled compared (#23407)
to arrays' section. PR Close #23407
This commit is contained in:
parent
c3280b2c2f
commit
010a4efa8c
|
@ -249,7 +249,7 @@ An observable produces values over time. An array is created as a static set of
|
||||||
<pre>➞5</pre>
|
<pre>➞5</pre>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre>arr.find((v) => v>10)</pre>
|
<pre>arr.find((v) => v>3)</pre>
|
||||||
<pre>5</pre>
|
<pre>5</pre>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -273,8 +273,8 @@ An observable produces values over time. An array is created as a static set of
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
4
|
5
|
||||||
5</pre>
|
7</pre>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre>arr.forEach((v) => {
|
<pre>arr.forEach((v) => {
|
||||||
|
@ -283,8 +283,8 @@ An observable produces values over time. An array is created as a static set of
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
4
|
5
|
||||||
5</pre>
|
7</pre>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue