mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 08:51:14 -03:00
Fix typos in comments
This commit is contained in:
@@ -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")
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user