Skip to content

Commit 6bcc92a

Browse files
author
Gauvain Pocentek
authored
Merge pull request #446 from jwilk-forks/spelling
Fix typos in documentation
2 parents e65dfa3 + c976fec commit 6bcc92a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

ChangeLog.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Version 1.2.0_ - 2018-01-01
3232
* Add support for impersonation tokens API
3333
* Add support for user activities
3434
* Update user docs with gitlab URLs
35-
* [docs] Bad arguments in projetcs file documentation
35+
* [docs] Bad arguments in projects file documentation
3636
* Add support for user_agent_detail (issues)
3737
* Add a SetMixin
3838
* Add support for project housekeeping
@@ -464,7 +464,7 @@ Version 0.9.1_ - 2015-05-15
464464
Version 0.9_ - 2015-05-15
465465
--------------------------
466466

467-
* Implement argparse libray for parsing argument on CLI
467+
* Implement argparse library for parsing argument on CLI
468468
* Provide unit tests and (a few) functional tests
469469
* Provide PEP8 tests
470470
* Use tox to run the tests
@@ -537,9 +537,9 @@ Version 0.3_ - 2013-08-27
537537
--------------------------
538538

539539
* Use PRIVATE-TOKEN header for passing the auth token
540-
* provide a AUTHORS file
540+
* provide an AUTHORS file
541541
* cli: support ssl_verify config option
542-
* Add ssl_verify option to Gitlab object. Defauls to True
542+
* Add ssl_verify option to Gitlab object. Defaults to True
543543
* Correct url for merge requests API.
544544

545545
Version 0.2_ - 2013-08-08

RELEASE_NOTES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Changes from 0.21 to 1.0.0
5252
by default.
5353

5454
v4 is mostly compatible with the v3, but some important changes have been
55-
introduced. Make sure to read `Switching to GtiLab API v4
55+
introduced. Make sure to read `Switching to GitLab API v4
5656
<http://python-gitlab.readthedocs.io/en/master/switching-to-v4.html>`_.
5757

5858
The development focus will be v4 from now on. v3 has been deprecated by GitLab

docs/api-usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Note on password authentication
4949

5050
The ``/session`` API endpoint used for username/password authentication has
5151
been removed from GitLab in version 10.2, and is not available on gitlab.com
52-
anymore. Personal token authentication is the prefered authentication method.
52+
anymore. Personal token authentication is the preferred authentication method.
5353

5454
If you need username/password authentication, you can use cookie-based
5555
authentication. You can use the web UI form to authenticate, retrieve cookies,
@@ -195,7 +195,7 @@ To avoid useless calls to the server API, you can create lazy objects. These
195195
objects are created locally using a known ID, and give access to other managers
196196
and methods.
197197

198-
The following exemple will only make one API call to the GitLab server to star
198+
The following example will only make one API call to the GitLab server to star
199199
a project:
200200

201201
.. code-block:: python

docs/gl_objects/events.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Examples
3131

3232
You can list events for an entire Gitlab instance (admin), users and projects.
3333
You can filter you events you want to retrieve using the ``action`` and
34-
``target_type`` attributes. The possibole values for these attributes are
34+
``target_type`` attributes. The possible values for these attributes are
3535
available on `the gitlab documentation
3636
<https://docs.gitlab.com/ce/api/events.html>`_.
3737

docs/gl_objects/projects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Delete a tag:
320320
Project snippets
321321
================
322322

323-
The snippet visibility can be definied using the following constants:
323+
The snippet visibility can be defined using the following constants:
324324

325325
* ``gitlab.VISIBILITY_PRIVATE``
326326
* ``gitlab.VISIBILITY_INTERNAL``

docs/gl_objects/users.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,19 +208,19 @@ List GPG keys for a user:
208208
:start-after: # gpgkey list
209209
:end-before: # end gpgkey list
210210

211-
Get an GPG gpgkey for a user:
211+
Get a GPG gpgkey for a user:
212212

213213
.. literalinclude:: users.py
214214
:start-after: # gpgkey get
215215
:end-before: # end gpgkey get
216216

217-
Create an GPG gpgkey for a user:
217+
Create a GPG gpgkey for a user:
218218

219219
.. literalinclude:: users.py
220220
:start-after: # gpgkey create
221221
:end-before: # end gpgkey create
222222

223-
Delete an GPG gpgkey for a user:
223+
Delete a GPG gpgkey for a user:
224224

225225
.. literalinclude:: users.py
226226
:start-after: # gpgkey delete

0 commit comments

Comments
 (0)