Minor typo correction

The stdout argument name was repeated in the run method docstring. The second should be replaced by stderr.

Signed-off-by: Ewan Barr <ewan.d.barr@googlmail.com>
This commit is contained in:
ewanbarr 2017-04-05 19:06:59 +02:00 committed by Ewan Barr
parent d12b5bb5e6
commit 112dc12bc0
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ class ContainerCollection(Collection):
stdin_open (bool): Keep ``STDIN`` open even if not attached.
stdout (bool): Return logs from ``STDOUT`` when ``detach=False``.
Default: ``True``.
stdout (bool): Return logs from ``STDERR`` when ``detach=False``.
stderr (bool): Return logs from ``STDERR`` when ``detach=False``.
Default: ``False``.
stop_signal (str): The stop signal to use to stop the container
(e.g. ``SIGINT``).