Skip to content

Commit acea091

Browse files
authored
fixes #1000 (#1043)
1 parent b1a7413 commit acea091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/chapter3/section3/subsection3.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ function insert(key_1, key_2, value, table) {
439439
set_tail(table,
440440
pair(list(key_1, pair(key_2, value)), tail(table)));
441441
} else {
442-
const record = assoc(key_2, tail(table));
442+
const record = assoc(key_2, tail(subtable));
443443
if (is_undefined(record)) {
444444
set_tail(subtable,
445445
pair(pair(key_2, value), tail(subtable)));

0 commit comments

Comments
 (0)