Skip to content

Commit fb7e563

Browse files
committed
Comma cleanup
1 parent f0aae72 commit fb7e563

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

doc/topics/development/conventions/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Settings
290290
--------
291291

292292
Individual settings in the Salt Master or Salt Minion configuration files are
293-
cross-referenced using two custom roles, ``conf_master`` and ``conf_minion``.
293+
cross-referenced using two custom roles, ``conf_master``, and ``conf_minion``.
294294

295295
.. code-block:: restructuredtext
296296

doc/topics/development/conventions/formulas.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Salt Formulas
55
=============
66

77
Formulas are pre-written Salt States. They are as open-ended as Salt States
8-
themselves and can be used for tasks such as installing a package, configuring
8+
themselves and can be used for tasks such as installing a package, configuring,
99
and starting a service, setting up users or permissions, and many other common
1010
tasks.
1111

@@ -340,7 +340,7 @@ Pillar would replace the ``config`` value from the call above.
340340
.. note:: Protecting Expansion of Content with Special Characters
341341

342342
When templating keep in mind that YAML does have special characters for
343-
quoting, flows and other special structure and content. When a Jinja
343+
quoting, flows, and other special structure and content. When a Jinja
344344
substitution may have special characters that will be incorrectly parsed by
345345
YAML care must be taken. It is a good policy to use the ``yaml_encode`` or
346346
the ``yaml_dquote`` Jinja filters:

doc/topics/development/conventions/packaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ distribution.
2929
Single Package
3030
==============
3131

32-
Shipping Salt as a single package, where the minion, master and all tools are
32+
Shipping Salt as a single package, where the minion, master, and all tools are
3333
together is perfectly acceptable and practiced by distributions such as
3434
FreeBSD.
3535

doc/topics/development/hacking.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Edit the master config file:
129129
1. Uncomment and change the ``user: root`` value to your own user.
130130
2. Uncomment and change the ``root_dir: /`` value to point to
131131
``/path/to/your/virtualenv``.
132-
3. If you are running version 0.11.1 or older, uncomment and change the
132+
3. If you are running version 0.11.1 or older, uncomment, and change the
133133
``pidfile: /var/run/salt-master.pid`` value to point to
134134
``/path/to/your/virtualenv/salt-master.pid``.
135135
4. If you are also running a non-development version of Salt you will have to
@@ -139,7 +139,7 @@ Edit the minion config file:
139139

140140
1. Repeat the edits you made in the master config for the ``user`` and
141141
``root_dir`` values as well as any port changes.
142-
2. If you are running version 0.11.1 or older, uncomment and change the
142+
2. If you are running version 0.11.1 or older, uncomment, and change the
143143
``pidfile: /var/run/salt-minion.pid`` value to point to
144144
``/path/to/your/virtualenv/salt-minion.pid``.
145145
3. Uncomment and change the ``master: salt`` value to point at ``localhost``.

doc/topics/development/tests/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ minions. This allows the syndic interface to be tested and master/minion
245245
communication to be verified. All of the integration tests are executed as
246246
live salt commands sent through the started daemons.
247247

248-
Integration tests are particularly good at testing modules, states and shell
248+
Integration tests are particularly good at testing modules, states, and shell
249249
commands.
250250

251251
* :doc:`Writing integration tests <integration>`

doc/topics/development/tests/integration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ once the related tests have completed. For example, if a new user is created to
258258
test a module, the same user should be removed after the test is completed to
259259
maintain system integrity.
260260

261-
To write a destructive test, import and use the destructiveTest decorator for
261+
To write a destructive test, import, and use the destructiveTest decorator for
262262
the test method:
263263

264264
.. code-block:: python
@@ -380,7 +380,7 @@ preceded with the ``@expensiveTest`` decorator. The expensive test decorator is
380380
necessary because it signals to the test suite that the
381381
``--cloud-provider-tests`` flag is required to run the cloud provider tests.
382382

383-
To write a cloud provider test, import and use the expensiveTest decorator for
383+
To write a cloud provider test, import, and use the expensiveTest decorator for
384384
the test function:
385385

386386
.. code-block:: python

0 commit comments

Comments
 (0)