Skip to content

Commit bec41bc

Browse files
committed
applied comments
1 parent c063b0e commit bec41bc

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

configuration/micro_kernel_trait.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,4 @@ Then see webpage in browser:
350350

351351
Hey, that looks a lot like a *traditional* Symfony application! You're right: the
352352
``MicroKernelTrait`` *is* still Symfony: but you can control your structure and
353-
features in a lighter way.
353+
features with less boilerplate configuration and code.

frontend.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ to solve the most common Webpack use cases.
2828
.. tip::
2929

3030
Encore is made by `Symfony`_ and works *beautifully* in Symfony applications.
31-
But it can be used in any application or language!
31+
But it can be used in any PHP application and even with other server side
32+
programming languages!
3233

3334
.. _encore-toc:
3435

reference/constraints/Callback.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Callback
33

44
The purpose of the Callback constraint is to create completely custom
55
validation rules and to assign any validation errors to specific fields
6-
on your object. If you're using validation with forms, this means that you
7-
can make these custom errors display next to a specific field, instead at
8-
the top of your form.
6+
on your object. If you're using validation with forms, this means that
7+
instead of displaying custom errors at the top of the form, you can
8+
display them next to the field they apply to.
99

1010
This process works by specifying one or more *callback* methods, each of
1111
which will be called during the validation process. Each of those methods

reference/forms/types/dateinterval.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ or an array (see `input`_).
5656
Basic Usage
5757
-----------
5858

59-
The most important options are `input`_ and `widget`_.
59+
This field type is highly configurable. The most important options are `input`_ and `widget`_.
6060

6161
You can configure *a lot* of different options, including exactly *which* range
6262
options to show (e.g. don't show "months", but *do* show "days")::

routing/optional_placeholders.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ be available inside your controller. Its value can be used to determine which
121121
set of blog posts to display for the given page.
122122

123123
But hold on! Since placeholders are required by default, this route will
124-
no longer match on ``/blog``. Instead, to see page 1 of the blog, you'd
125-
need to use the URL ``/blog/1``! Since that's no way for a rich web app
126-
to behave, modify the route to make the ``{page}`` parameter optional.
124+
no longer match on ``/blog`` alone. Instead, to see page 1 of the blog,
125+
you'd need to use the URL ``/blog/1``! Since that's no way for a rich web
126+
app to behave, modify the route to make the ``{page}`` parameter optional.
127127
This is done by including it in the ``defaults`` collection:
128128

129129
.. configuration-block::

0 commit comments

Comments
 (0)