docs(aio): Fixed typo in 'comparing observables -> Observabled compared (#23407)

to arrays' section.

PR Close #23407
This commit is contained in:
Anuj 2018-04-17 12:00:56 +05:30 committed by Jason Aden
parent c3280b2c2f
commit 010a4efa8c
1 changed files with 5 additions and 5 deletions

View File

@ -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>