Merge pull request #2129 from adw1n/i2122-docs

Fix docs for `chunk_size` parameter
This commit is contained in:
Joffrey F 2018-09-14 16:40:58 -07:00 committed by GitHub
commit 02316eaf25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ class Image(Model):
Get a tarball of an image. Similar to the ``docker save`` command.
Args:
chunk_size (int): The number of bytes returned by each iteration
of the generator. If ``None``, data will be streamed as it is
received. Default: 2 MB
chunk_size (int): The generator will return up to that much data
per iteration, but may return less. If ``None``, data will be
streamed as it is received. Default: 2 MB
Returns:
(generator): A stream of raw archive data.