Skip to content

Commit 21fa480

Browse files
author
roman_yakovenko
committed
documentation changes: replace "next" with "the following"
1 parent 8ca0f14 commit 21fa480

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/design.rest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Parser configuration classes
184184

185185

186186
``file_configuration_t`` - a class, that contains some data and description how
187-
to treat the data. ``file_configuration_t`` can contain reference to the next types
187+
to treat the data. ``file_configuration_t`` can contain reference to the the following types
188188
of data:
189189

190190
(1) path to C++ source file

docs/download.rest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ There are few different ways to install GCC-XML on your system:
5858
pygccxml
5959
--------
6060
In command prompt or shell change current directory to be "pygccxml-X.Y.Z".
61-
"X.Y.Z" is version of `pygccxml`_. Type next command:
61+
"X.Y.Z" is version of `pygccxml`_. Type the following command:
6262

6363
| ``python setup.py install``
6464

docs/pygccxml.rest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Features
3939
Query interface
4040
---------------
4141
`pygccxml`_ provides simple and powerful API to query declarations tree. How many
42-
lines is needed to write next query?
42+
lines is needed to write the following query?
4343
::
4444

4545
select all free functions from the project

docs/query_interface.rest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This call will return all namespaces with name 'details'.
3838
User 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
209209
project:
210210
211211
.. code-block:: Python
@@ -216,7 +216,7 @@ project:
216216
217217
218218
Another 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
226226
As you can see this class allows you to write less code. Basically using this
227227
class you don't have to write loops. If will do it for you. Also if you insist to
228228
write 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

docs/upgrade_issues.rest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Free and member function default arguments
9999
------------------------------------------
100100

101101
Both versions of GCC-XML have a few issues, related to default arguments. GCC-XML 0.9
102-
fixes some issues, but introduces another ones. Take a look on next examples:
102+
fixes some issues, but introduces another ones. Take a look on the following examples:
103103

104104
*
105105
.. code-block:: C++
@@ -209,7 +209,7 @@ Name mangling
209209
GCC-XML 0.9 mangles names different than the previous one. This change is the most
210210
dramatic one, because it may require from you to change the code.
211211

212-
Consider next C++ code:
212+
Consider the following C++ code:
213213

214214
.. code-block:: C++
215215

0 commit comments

Comments
 (0)