Skip to content

Commit 83238aa

Browse files
committed
consisteny, use "front-end" instead of "frontend" or "front end"
1 parent 5b8e84d commit 83238aa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Diff for: book/routing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ In an upcoming section, you'll learn how to generate URLs from inside templates.
14191419

14201420
.. tip::
14211421

1422-
If the frontend of your application uses Ajax requests, you might want
1422+
If the front-end of your application uses Ajax requests, you might want
14231423
to be able to generate URLs in JavaScript based on your routing configuration.
14241424
By using the `FOSJsRoutingBundle`_, you can do exactly that:
14251425

Diff for: cookbook/assetic/asset_management.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Combining Assets
204204
~~~~~~~~~~~~~~~~
205205

206206
One feature of Assetic is that it will combine many files into one. This helps
207-
to reduce the number of HTTP requests, which is great for frontend performance.
207+
to reduce the number of HTTP requests, which is great for front-end performance.
208208
It also allows you to maintain the files more easily by splitting them into
209209
manageable parts. This can help with re-usability as you can easily split
210210
project-specific files from those which can be used in other applications,

Diff for: cookbook/configuration/front_controllers_and_kernel.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ controller to make use of the new kernel.
126126

127127
Having different ``AppKernels`` might be useful to enable different front
128128
controllers (on potentially different servers) to run parts of your application
129-
independently (for example, the admin UI, the frontend UI and database migrations).
129+
independently (for example, the admin UI, the front-end UI and database migrations).
130130

131131
.. note::
132132

Diff for: cookbook/symfony1.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,14 +200,14 @@ Applications
200200
------------
201201

202202
In a symfony1 project, it is common to have several applications: one for the
203-
frontend and one for the backend for instance.
203+
front-end and one for the back-end for instance.
204204

205205
In a Symfony2 project, you only need to create one application (a blog
206206
application, an intranet application, ...). Most of the time, if you want to
207207
create a second application, you might instead create another project and
208208
share some bundles between them.
209209

210-
And if you need to separate the frontend and the backend features of some
210+
And if you need to separate the front-end and the back-end features of some
211211
bundles, you can create sub-namespaces for controllers, sub-directories for
212212
templates, different semantic configurations, separate routing configurations,
213213
and so on.

Diff for: reference/forms/types/integer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ integer Field Type
77
Renders an input "number" field. Basically, this is a text field that's good
88
at handling data that's in an integer form. The input ``number`` field looks
99
like a text box, except that - if the user's browser supports HTML5 - it will
10-
have some extra frontend functionality.
10+
have some extra front-end functionality.
1111

1212
This field has different options on how to handle input values that aren't
1313
integers. By default, all non-integer values (e.g. 6.78) will round down (e.g. 6).

0 commit comments

Comments
 (0)