diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-19 11:13:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-19 11:13:24 +0200 |
commit | 227607ca47c78e3958c6649edb644c7e26d55281 (patch) | |
tree | c9b041833e261e2747fb545cc5bde124a87fa966 /gitlab/mixins.py | |
parent | e19314dcc481b045ba7a12dd76abedc08dbdf032 (diff) | |
parent | 7ea4ddc4248e314998fd27eea17c6667f5214d1d (diff) | |
download | gitlab-227607ca47c78e3958c6649edb644c7e26d55281.tar.gz |
Merge pull request #1603 from timgates42/bugfix_typos
docs: fix a few typos
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r-- | gitlab/mixins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py index 12c1f94..0c2cd94 100644 --- a/gitlab/mixins.py +++ b/gitlab/mixins.py @@ -439,7 +439,7 @@ class SetMixin(_RestManagerBase): Raises: GitlabAuthenticationError: If authentication is not correct - GitlabSetError: If an error occured + GitlabSetError: If an error occurred Returns: obj: The created/updated attribute @@ -661,7 +661,7 @@ class DownloadMixin(_RestObjectBase): Args: streamed (bool): If True the data will be processed by chunks of `chunk_size` and each chunk is passed to `action` for - reatment + treatment action (callable): Callable responsible of dealing with chunk of data chunk_size (int): Size of each chunk |