Skip to content

Commit 498ead1

Browse files
committed
minor #10086 Replace entry/section by "article" (javiereguiluz)
This PR was merged into the 2.8 branch. Discussion ---------- Replace entry/section by "article" A minor thing I had on my TODO list. Commits ------- 6f7010f Replace entry/section by "article"
2 parents c195250 + 6f7010f commit 498ead1

19 files changed

+28
-28
lines changed

components/http_foundation/session_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Configuring Sessions and Save Handlers
66
======================================
77

8-
This section deals with how to configure session management and fine tune it
8+
This article deals with how to configure session management and fine tune it
99
to your specific needs. This documentation covers save handlers, which
1010
store and retrieve session data, and configuring session behavior.
1111

components/security/firewall.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ certain action or resource of the application::
3636

3737
.. note::
3838

39-
Read the dedicated sections to learn more about :doc:`/components/security/authentication`
39+
Read the dedicated articles to learn more about :doc:`/components/security/authentication`
4040
and :doc:`/components/security/authorization`.
4141

4242
.. _firewall:
@@ -148,5 +148,5 @@ context works:
148148
#. Once a user is authenticated, you'll use :doc:`/components/security/authorization`
149149
to deny access to certain resources.
150150

151-
Read the next sections to find out more about :doc:`/components/security/authentication`
151+
Read the next articles to find out more about :doc:`/components/security/authentication`
152152
and :doc:`/components/security/authorization`.

deployment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ setup:
196196
Application Lifecycle: Continuous Integration, QA, etc.
197197
-------------------------------------------------------
198198

199-
While this entry covers the technical details of deploying, the full lifecycle
199+
While this article covers the technical details of deploying, the full lifecycle
200200
of taking code from development up to production may have more steps:
201201
deploying to staging, QA (Quality Assurance), running tests, etc.
202202

doctrine/event_listeners_subscribers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ to the tag like so:
266266
.. note::
267267

268268
  Marking an event listener as ``lazy`` has nothing to do with lazy service
269-
definitions which are described :doc:`in their own section </service_container/lazy_services>`
269+
definitions which are described :doc:`in their own article </service_container/lazy_services>`
270270

271271
.. _`The Event System`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/events.html
272272
.. _`the Doctrine Documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/events.html#entity-listeners

doctrine/repository.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
How to Create custom Repository Classes
55
=======================================
66

7-
In the previous sections, you began constructing and using more complex queries
8-
from inside a controller. In order to isolate, reuse and test these queries,
9-
it's a good practice to create a custom repository class for your entity.
10-
Methods containing your query logic can then be stored in this class.
7+
Constructing and using complex queries inside controllers complicate the
8+
maintenance of your application. In order to isolate, reuse and test these
9+
queries, it's a good practice to create a custom repository class for your
10+
entity. Methods containing your query logic can then be stored in this class.
1111

1212
To do this, add the repository class name to your entity's mapping definition:
1313

form/create_custom_field_type.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ section explains how more complex field types solve this problem.
273273
Creating your Field Type as a Service
274274
-------------------------------------
275275

276-
So far, this entry has assumed that you have a very simple custom field type.
276+
So far, this article has assumed that you have a very simple custom field type.
277277
But if you need access to configuration, a database connection, or some other
278278
service, then you'll want to register your custom type as a service. For
279279
example, suppose that you're storing the shipping parameters in configuration:

form/dynamic_form_modification.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to Dynamically Modify Forms Using Form Events
55
=================================================
66

7-
Often times, a form can't be created statically. In this entry, you'll learn
7+
Often times, a form can't be created statically. In this article, you'll learn
88
how to customize your form based on three common use-cases:
99

1010
1) :ref:`form-events-underlying-data`
@@ -74,7 +74,7 @@ Suppose now, that you don't want the user to be able to change the ``name`` valu
7474
once the object has been created. To do this, you can rely on Symfony's
7575
:doc:`EventDispatcher component </components/event_dispatcher>`
7676
system to analyze the data on the object and modify the form based on the
77-
Product object's data. In this entry, you'll learn how to add this level of
77+
Product object's data. In this article, you'll learn how to add this level of
7878
flexibility to your forms.
7979

8080
Adding an Event Listener to a Form Class

form/form_collections.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
How to Embed a Collection of Forms
55
==================================
66

7-
In this entry, you'll learn how to create a form that embeds a collection
7+
In this article, you'll learn how to create a form that embeds a collection
88
of many other forms. This could be useful, for example, if you had a ``Task``
99
class and you wanted to edit/create/remove many ``Tag`` objects related to
1010
that Task, right inside the same form.
1111

1212
.. note::
1313

14-
In this entry, it's loosely assumed that you're using Doctrine as your
14+
In this article, it's loosely assumed that you're using Doctrine as your
1515
database store. But if you're not using Doctrine (e.g. Propel or just
1616
a database connection), it's all very similar. There are only a few parts
1717
of this tutorial that really care about "persistence".
@@ -224,7 +224,7 @@ great, your user can't actually add any new tags yet.
224224

225225
.. caution::
226226

227-
In this entry, you embed only one collection, but you are not limited
227+
In this article, you embed only one collection, but you are not limited
228228
to this. You can also embed nested collection as many levels down as you
229229
like. But if you use Xdebug in your development setup, you may receive
230230
a ``Maximum function nesting level of '100' reached, aborting!`` error.

introduction/http_fundamentals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ resource - the most common HTTP methods are:
7878
Delete the resource from the server (used by APIs).
7979

8080
With this in mind, you can imagine what an HTTP request might look like to
81-
delete a specific blog entry, for example:
81+
delete a specific blog post, for example:
8282

8383
.. code-block:: text
8484

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Routing Examples
2929

3030
A *route* is a map from a URL path to a controller. For example, suppose
3131
you want to match any URL like ``/blog/my-post`` or ``/blog/all-about-symfony``
32-
and send it to a controller that can look up and render that blog entry.
32+
and send it to a controller that can look up and render that blog post.
3333
The route is simple:
3434

3535
.. configuration-block::

0 commit comments

Comments
 (0)