Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit a25c845

Browse files
Merge pull request #695 from tomekwi/patch-3
Fix typos
2 parents 5931bb7 + 2f3e1ac commit a25c845

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

doc/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ To put it more concretely, if you know how to program against Arrays using the A
3535
<tr><td><pre><code>getDataFromLocalMemory()
3636
.filter (s => s != null)
3737
.map(s => s + 'transformed')
38-
.forEach(s => console.log('next => %s', it))</code></pre></td>
38+
.forEach(s => console.log(`next => ${s}`))</code></pre></td>
3939
<td><pre><code>getDataFromNetwork()
4040
.filter (s => s != null)
4141
.map(s => s + 'transformed')
42-
.subscribe(s => console.log('next => %s', it))</code></pre></td></tr>
42+
.subscribe(s => console.log(`next => ${s}`))</code></pre></td></tr>
4343
</tbody>
4444
</table></center>
4545

0 commit comments

Comments
 (0)