diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-04 08:32:12 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-04 08:32:12 +0200 |
commit | e1f5e1560e53019d45b113a71916ad9a7695afeb (patch) | |
tree | 5f9edb823041f6611c995235e04bdaaf10f84e4c /docs/api-usage.rst | |
parent | 1f52cd2df35dab33dbf7429c8d514443278b549a (diff) | |
download | gitlab-e1f5e1560e53019d45b113a71916ad9a7695afeb.tar.gz |
doc: replace incorrect archive call()
Diffstat (limited to 'docs/api-usage.rst')
-rw-r--r-- | docs/api-usage.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-usage.rst b/docs/api-usage.rst index ca85fbd..976a3a0 100644 --- a/docs/api-usage.rst +++ b/docs/api-usage.rst @@ -99,9 +99,9 @@ actions on the GitLab resources. For example: .. code-block:: python - # get a tarball of the git repository + # star a git repository project = gl.projects.get(1) - project.archive() + project.star() Pagination ========== |