Fix typos in comments

This commit is contained in:
ccoVeille
2025-01-19 21:34:42 +01:00
committed by Peter Ammon
parent 88c8992cc3
commit b6a1bedab9
30 changed files with 34 additions and 34 deletions

View File

@@ -4,7 +4,7 @@ from pexpect_helper import SpawnedProc
sp = SpawnedProc(args=["-d", "reader"])
sp.expect_prompt()
# Verify we correctly diable mouse tracking.
# Verify we correctly disable mouse tracking.
# Five char sequence.
sp.send("\x1b[tDE")

View File

@@ -49,7 +49,7 @@ if fish_pid == tty_owner:
# It must not hang. But it might hang when trying to restore the tty.
os.kill(fish_pid, signal.SIGTERM)
# Loop a bit until the process exits (correct) or stops (incorrrect).
# Loop a bit until the process exits (correct) or stops (incorrect).
# When it exits it should be due to the SIGTERM that we sent it.
for i in range(50):
pid, status = os.waitpid(fish_pid, os.WUNTRACED | os.WNOHANG)