Skip to content

Commit ce9bd03

Browse files
committed
Fix "unhighlight" typo
The comment describes removing highlighting when code execution finishes. The codebase consistently uses "highlight" terminology (highlight_active_line setting, "highlight the active line" in docs). "unlightlight" is not used elsewhere and appears to be a typo for "unhighlight".
1 parent 38b04df commit ce9bd03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/core/respond.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def respond(interpreter):
387387
print(str(e))
388388
print("Failed to sync your Computer with iComputer. Continuing.")
389389

390-
# yield final "active_line" message, as if to say, no more code is running. unlightlight active lines
390+
# yield final "active_line" message, as if to say, no more code is running. unhighlight active lines
391391
# (is this a good idea? is this our responsibility? i think so — we're saying what line of code is running! ...?)
392392
yield {
393393
"role": "computer",

0 commit comments

Comments
 (0)