summaryrefslogtreecommitdiff
path: root/docs/api-usage.rst
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-08-04 08:32:12 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2016-08-04 08:32:12 +0200
commite1f5e1560e53019d45b113a71916ad9a7695afeb (patch)
tree5f9edb823041f6611c995235e04bdaaf10f84e4c /docs/api-usage.rst
parent1f52cd2df35dab33dbf7429c8d514443278b549a (diff)
downloadgitlab-e1f5e1560e53019d45b113a71916ad9a7695afeb.tar.gz
doc: replace incorrect archive call()
Diffstat (limited to 'docs/api-usage.rst')
-rw-r--r--docs/api-usage.rst4
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
==========