Skip to content

Commit 752d591

Browse files
Additional grammar and style improvements for American English clarity
Co-authored-by: javiereguiluz <73419+javiereguiluz@users.noreply.github.com>
1 parent 93a189e commit 752d591

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

best_practices.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can even ignore them completely and continue using your own best practices
1010
and methodologies. Symfony is flexible enough to adapt to your needs.
1111

1212
This article assumes that you already have experience developing Symfony
13-
applications. If you don't, read first the :doc:`Getting Started </setup>`
13+
applications. If you don't, first read the :doc:`Getting Started </setup>`
1414
section of the documentation.
1515

1616
.. tip::
@@ -118,7 +118,7 @@ Use Short and Prefixed Parameter Names
118118

119119
Consider using ``app.`` as the prefix of your :ref:`parameters <configuration-parameters>`
120120
to avoid collisions with Symfony and third-party bundles/libraries parameters.
121-
Then, use just one or two words to describe the purpose of the parameter:
121+
Then, use only one or two words to describe the purpose of the parameter:
122122

123123
.. code-block:: yaml
124124

bundles.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Bundle System
1111

1212
A bundle is similar to a plugin in other software, but even better. The core
1313
features of Symfony framework are implemented with bundles (FrameworkBundle,
14-
SecurityBundle, DebugBundle, etc.) They are also used to add new features in
14+
SecurityBundle, DebugBundle, etc.) Bundles are also used to add new features in
1515
your application via `third-party bundles`_.
1616

1717
Bundles used in your applications must be enabled per
@@ -42,7 +42,7 @@ file::
4242
Creating a Bundle
4343
-----------------
4444

45-
This section creates and enables a new bundle to show there are only a few steps required.
45+
This section creates and enables a new bundle to show that only a few steps are required.
4646
The new bundle is called AcmeBlogBundle, where the ``Acme`` portion is an example
4747
name that should be replaced by some "vendor" name that represents you or your
4848
organization (e.g. AbcBlogBundle for some company named ``Abc``).

deployment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ How to Deploy a Symfony Application
55

66
Deploying a Symfony application can be a complex and varied task depending on
77
the setup and the requirements of your application. This article is not a
8-
step-by-step guide, but is a general list of the most common requirements and
8+
step-by-step guide, but rather a general list of the most common requirements and
99
ideas for deployment.
1010

1111
.. _symfony2-deployment-basics:

lock.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Dealing with Concurrency with Locks
22
===================================
33

4-
When a program runs concurrently, some part of code which modify shared
4+
When a program runs concurrently, some parts of code that modify shared
55
resources should not be accessed by multiple processes at the same time.
66
Symfony's :doc:`Lock component </components/lock>` provides a locking mechanism to ensure
77
that only one process is running the critical section of code at any point of

serializer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ to a PHP object that is consumed by your application. Then, when generating
1010
the response, you can use the serializer to transform the PHP objects back
1111
to a JSON response.
1212

13-
It can also be used to for instance load CSV configuration data as PHP
13+
It can also be used to, for instance, load CSV configuration data as PHP
1414
objects, or even to transform between formats (e.g. YAML to XML).
1515

1616
.. _activating_the_serializer:

0 commit comments

Comments
 (0)