Skip to content

Commit c3955a5

Browse files
authored
removing unnecessary line breaks in programs (#729)
1 parent 9cfede8 commit c3955a5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

xml/chapter3/section5/subsection1.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,8 +1426,7 @@ stream_ref(x, 7);
14261426
<REQUIRES>stream_map_optimized</REQUIRES>
14271427
<REQUIRES>stream_enumerate_interval</REQUIRES>
14281428
<JAVASCRIPT>
1429-
let x = stream_map_optimized(
1430-
display, stream_enumerate_interval(0, 10));
1429+
let x = stream_map_optimized(display, stream_enumerate_interval(0, 10));
14311430
<SHORT_SPACE/>
14321431
stream_ref(x, 5);
14331432
<SHORT_SPACE/>

xml/chapter3/section5/subsection2.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1034,8 +1034,7 @@ function merge(s1, s2) {
10341034
? pair(s1head, () => merge(stream_tail(s1), s2))
10351035
: s1head &gt; s2head
10361036
? pair(s2head, () => merge(s1, stream_tail(s2)))
1037-
: pair(s1head, () => merge(stream_tail(s1),
1038-
stream_tail(s2)));
1037+
: pair(s1head, () => merge(stream_tail(s1), stream_tail(s2)));
10391038
}
10401039
}
10411040
</JAVASCRIPT>

0 commit comments

Comments
 (0)