Skip to content

Commit 88fe6ef

Browse files
authored
Merge branch 'master' into scheme1
2 parents 771c262 + 781eebb commit 88fe6ef

File tree

5 files changed

+711
-856
lines changed

5 files changed

+711
-856
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
},
2626
"homepage": "https://sourceacademy.org/sicpjs",
2727
"devDependencies": {
28-
"@babel/core": "^7.25.2",
29-
"@babel/node": "^7.25.0",
30-
"@babel/preset-env": "^7.25.3",
28+
"@babel/core": "^7.26.0",
29+
"@babel/node": "^7.26.0",
30+
"@babel/preset-env": "^7.26.0",
3131
"fs-extra": "^11.2.0",
3232
"http-server": "^14.1.1",
3333
"husky": "^8.0.3",
3434
"js-slang": "^1.0.74",
3535
"lz-string": "^1.5.0",
36-
"prettier": "^3.3.3",
36+
"prettier": "^3.4.2",
3737
"xmldom": "^0.6.0",
3838
"xpath": "0.0.33"
3939
},

xml/chapter1/section2/section2.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
describe some typical patterns of process evolution.
9494
</TEXT>
9595

96-
<DO_BREAK_PAGE/>
9796
<TEXT>
9897
In this section we will examine some common <QUOTE>shapes</QUOTE> for
9998
processes generated by simple

xml/chapter1/section3/subsection1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ function sum_integers(a, b) {
357357
}
358358
</JAVASCRIPT>
359359
</SNIPPET>
360-
<PDF_ONLY>\newpage\noindent </PDF_ONLY>Then we can add up the integers from 1 to 10:
360+
Then we can add up the integers from 1 to 10:
361361
<SNIPPET PAGE="59">
362362
<NAME>sum_integers_example2</NAME>
363363
<REQUIRES>sum_integers_definition2</REQUIRES>

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)