summaryrefslogtreecommitdiff
path: root/docs/api-usage.rst
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-08-06 14:26:33 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2016-08-06 14:26:33 +0200
commite3ac32f76a54e06c9c465c5acd41398988154fe9 (patch)
treefacbe099d8c12626382fe55ea442af35b9332d6a /docs/api-usage.rst
parente6ffd69bc745ce1a5b857fc248a3bef793e30138 (diff)
parente1f5e1560e53019d45b113a71916ad9a7695afeb (diff)
downloadgitlab-e3ac32f76a54e06c9c465c5acd41398988154fe9.tar.gz
Merge branch 'master' of github.com:gpocentek/python-gitlab
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
==========