Skip to content

Commit

Permalink
fixes #1000 (#1043)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-henz authored Jul 10, 2024
1 parent b1a7413 commit acea091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml/chapter3/section3/subsection3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ function insert(key_1, key_2, value, table) {
set_tail(table,
pair(list(key_1, pair(key_2, value)), tail(table)));
} else {
const record = assoc(key_2, tail(table));
const record = assoc(key_2, tail(subtable));
if (is_undefined(record)) {
set_tail(subtable,
pair(pair(key_2, value), tail(subtable)));
Expand Down

0 comments on commit acea091

Please sign in to comment.