@@ -38,7 +38,7 @@ This call will return all namespaces with name 'details'.
3838User interface
3939--------------
4040
41- As you already know, `` pygccxml.declarations`` package defines next classes:
41+ As you already know, `` pygccxml.declarations`` package defines the following classes:
4242
4343* `` scopedef_t`` - base class for all classes, that can contain other declarations
4444
@@ -205,7 +205,7 @@ should have `call policies`_. For example:
205205 };
206206
207207`` clone`` member function `call policies` _ is `` return_value_policy< manage_new_object> ()`` .
208- Next code applies the `call policies` _ on all `` clone`` member functions within the
208+ The following code applies the `call policies` _ on all `` clone`` member functions within the
209209project:
210210
211211.. code- block:: Python
@@ -216,7 +216,7 @@ project:
216216
217217
218218Another example, from `Py++ ` _ project. Sometimes it is desirable to
219- exclude declaration, from being exported to Python. Next code will exclude
219+ exclude declaration, from being exported to Python. The following code will exclude
220220`` clone`` member function from being exported:
221221
222222.. code- block:: Python
@@ -226,7 +226,7 @@ exclude declaration, from being exported to Python. Next code will exclude
226226As you can see this class allows you to write less code. Basically using this
227227class you don' t have to write loops. If will do it for you. Also if you insist to
228228write loops, `` mdecl_wrapper_t`` class implements `` __len__ `` , `` __getitem__ ``
229- and `` __iter__ `` methods. So you can write next code:
229+ and `` __iter__ `` methods. So you can write the following code:
230230
231231.. code- block:: Python
232232
0 commit comments