Skip to content

Commit 58aa98f

Browse files
authored
fixes #1060 (#1062)
1 parent f937793 commit 58aa98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/chapter3/section5/subsection1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@ function stream_map_2_optimized(f, s1, s2) {
14121412
return is_null(s1) || is_null(s2)
14131413
? null
14141414
: pair(f(head(s1), head(s2)),
1415-
memo(() => stream_map_2(f, stream_tail(s1), stream_tail(s2))));
1415+
memo(() => stream_map_2_optimized(f, stream_tail(s1), stream_tail(s2))));
14161416
}
14171417
</JAVASCRIPT>
14181418
</SNIPPET>

0 commit comments

Comments
 (0)