Skip to content

Commit f62a343

Browse files
Corrected mistake
1 parent 92e0377 commit f62a343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manuscript/ch10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ var b =
320320
.filter( v => v % 2 == 1 ) // only odd numbers
321321
.distinctUntilChanged() // only consecutive-distinct
322322
.throttle( 100 ) // slow it down a bit
323-
.map( v = v * 2 ); // double them
323+
.map( v => v * 2 ); // double them
324324

325325
b.subscribe( function onValue(v){
326326
console.log( "Next:", v );

0 commit comments

Comments
 (0)