diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-06 14:26:33 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-06 14:26:33 +0200 |
commit | e3ac32f76a54e06c9c465c5acd41398988154fe9 (patch) | |
tree | facbe099d8c12626382fe55ea442af35b9332d6a /docs/api-usage.rst | |
parent | e6ffd69bc745ce1a5b857fc248a3bef793e30138 (diff) | |
parent | e1f5e1560e53019d45b113a71916ad9a7695afeb (diff) | |
download | gitlab-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.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 ========== |