Fix typos: termina[ta]te().

This commit is contained in:
Guido van Rossum
2016-03-09 09:21:15 -08:00
parent 5e0c61f8e0
commit 54ba6d9b73
3 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ class Process:
@coroutine
def wait(self) -> int: ...
def send_signal(self, signal: int) -> None: ...
def terminatate(self) -> None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...
@coroutine
def communicate(self, input: bytes = ...) -> Tuple[bytes, bytes]: ...