diff options
author | Ben Brown <ben.brown@codethink.co.uk> | 2021-06-01 14:43:36 +0100 |
---|---|---|
committer | Ben Brown <ben.brown@codethink.co.uk> | 2021-06-01 15:09:08 +0100 |
commit | 5226f095c39985d04c34e7703d60814e74be96f8 (patch) | |
tree | d358b9f8cb0d4af65257ef180551f686f202f594 /gitlab/client.py | |
parent | 8e5b0de7d9b1631aac4e9ac03a286dfe80675040 (diff) | |
download | gitlab-5226f095c39985d04c34e7703d60814e74be96f8.tar.gz |
docs: fix typo in http_delete docstring
Diffstat (limited to 'gitlab/client.py')
-rw-r--r-- | gitlab/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/client.py b/gitlab/client.py index c0dc489..d19acfb 100644 --- a/gitlab/client.py +++ b/gitlab/client.py @@ -787,7 +787,7 @@ class Gitlab(object): ) from e def http_delete(self, path: str, **kwargs: Any) -> requests.Response: - """Make a PUT request to the Gitlab server. + """Make a DELETE request to the Gitlab server. Args: path (str): Path or full URL to query ('/projects' or |