Spell check strings and comments

Signed-off-by: Jhon Honce <jhonce@redhat.com>

Closes: #831
Approved by: rhatdan
This commit is contained in:
Jhon Honce
2018-05-24 17:50:37 -07:00
committed by Atomic Bot
parent a7180cd545
commit 684b544e9c
24 changed files with 35 additions and 35 deletions

View File

@ -42,7 +42,7 @@ class Container(collections.UserDict):
def attach(self, detach_key=None, no_stdin=False, sig_proxy=True):
"""Attach to running container."""
with self._client() as podman:
# TODO: streaming and port magic occur, need arguements
# TODO: streaming and port magic occur, need arguments
podman.AttachToContainer()
def processes(self):
@ -163,7 +163,7 @@ class Container(collections.UserDict):
def rename(self, target):
"""Rename container, return id on success."""
with self._client() as podman:
# TODO: Need arguements
# TODO: Need arguments
results = podman.RenameContainer()
# TODO: fixup objects cached information
return results['container']
@ -171,7 +171,7 @@ class Container(collections.UserDict):
def resize_tty(self, width, height):
"""Resize container tty."""
with self._client() as podman:
# TODO: magic re: attach(), arguements
# TODO: magic re: attach(), arguments
podman.ResizeContainerTty()
def pause(self):