Skip to content

Commit

Permalink
ack guy
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-henz committed Jul 20, 2021
1 parent 4c4f2c9 commit 4336fff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions javascript/processingFunctions/warnings.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export const checkIndexBadEndWarning = indexStr => {
export const checkLongLineWarning = str => {
const lines = str.split("\n");
for (const line of lines) {
if (line.length > 72) {
if (line.length > 75) {
console.log(
"WARNING, line is too long (>72 chars) and will overflow the page:\n" +
"WARNING, line is too long (>75 chars) and will overflow the page:\n" +
line +
"\n"
);
Expand Down
4 changes: 3 additions & 1 deletion xml/others/04acknowledgements04.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
undergraduate student assistants. Their continuous feedback over
the past nine years allowed us to resolve countless JavaScript-specific
issues and remove unnecessary complications and yet retain the
essential features of both SICP and JavaScript.
essential features of both SICP and JavaScript. Guy Lewis
Steele Jr.<SPACE/>provided detailed and useful feedback on some exercises
of chapter 4.
</TEXT>
<TEXT>
SICP JS is a software project in addition to a book project. We obtained
Expand Down

0 comments on commit 4336fff

Please sign in to comment.