Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 8167b0c

Browse files
committed
Really fix <area> element (had misspelling).
1 parent 544c738 commit 8167b0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runestone/clickableArea/clickable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def visit_ca_xml(self, node):
114114
for row in node["runestone_options"]["raw_source"]:
115115
row = row.replace("\n", "")
116116
row = row.replace(":click-correct:", "<area correct='yes'>")
117-
row = row.replace(":click-incorrect:", "<area correcct='no'>") # make explicit
117+
row = row.replace(":click-incorrect:", "<area correct='no'>") # make explicit
118118
row = row.replace(":endclick:", "</area>") # eliminate final colon as well
119119
row = "<cline>" + row + "</cline>\n"
120120
res += row

0 commit comments

Comments
 (0)