Skip to content

Commit 04500ba

Browse files
Fix syntax error on solution for 2.82 (#855)
1 parent e393e92 commit 04500ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/chapter2/section5/subsection2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ function can_coerce_to(type_tags, target_type) {
12761276
return accumulate((type_tag, result) =>
12771277
result &&
12781278
(type_tag === target_type ||
1279-
! is_undefined(get_coercion(type_tag, target_type)),
1279+
! is_undefined(get_coercion(type_tag, target_type))),
12801280
true,
12811281
type_tags);
12821282
}

0 commit comments

Comments
 (0)