Skip to content

Commit

Permalink
fixes #1060 (#1062)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-henz authored Oct 13, 2024
1 parent f937793 commit 58aa98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml/chapter3/section5/subsection1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,7 @@ function stream_map_2_optimized(f, s1, s2) {
return is_null(s1) || is_null(s2)
? null
: pair(f(head(s1), head(s2)),
memo(() => stream_map_2(f, stream_tail(s1), stream_tail(s2))));
memo(() => stream_map_2_optimized(f, stream_tail(s1), stream_tail(s2))));
}
</JAVASCRIPT>
</SNIPPET>
Expand Down

0 comments on commit 58aa98f

Please sign in to comment.