@@ -7,7 +7,7 @@ python-gitlab supports both GitLab v3 and v4 APIs. To use the v3 make sure to
77.. note ::
88
99 To use the v3 make sure to install python-gitlab 1.4. Only the v4 API is
10- documented here. See the documentation of earlier version for the v3 API.
10+ documented here. See the documentation of earlier versions for the v3 API.
1111
1212``gitlab.Gitlab `` class
1313=======================
@@ -88,7 +88,7 @@ Examples:
8888 You can list the mandatory and optional attributes for object creation and
8989update with the manager's ``get_create_attrs() `` and ``get_update_attrs() ``
9090methods. They return 2 tuples, the first one is the list of mandatory
91- attributes, the second one the list of optional attribute:
91+ attributes, the second one is the list of optional attribute:
9292
9393.. code-block :: python
9494
@@ -206,7 +206,7 @@ through a large number of items:
206206 for item in items:
207207 print (item.attributes)
208208
209- The generator exposes extra listing information as received by the server:
209+ The generator exposes extra listing information as received from the server:
210210
211211* ``current_page ``: current page number (first page is 1)
212212* ``prev_page ``: if ``None `` the current page is the first one
@@ -249,7 +249,7 @@ properly closed when you exit a ``with`` block:
249249 .. warning ::
250250
251251 The context manager will also close the custom ``Session `` object you might
252- have used to build a ``Gitlab `` instance.
252+ have used to build the ``Gitlab `` instance.
253253
254254Proxy configuration
255255-------------------
0 commit comments