Skip to content

Commit 25a0f40

Browse files
committed
[symfony#1937] Small tweaks in changes out of first person language
1 parent 8372f9d commit 25a0f40

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

book/controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ a serialized JSON array, an image, a redirect, a 404 error or anything else
1111
you can dream up. The controller contains whatever arbitrary logic *your
1212
application* needs to render the content of a page.
1313

14-
See how simple this is, by looking at a Symfony2 controller in action.
14+
See how simple this is by looking at a Symfony2 controller in action.
1515
The following controller would render a page that simply prints ``Hello world!``::
1616

1717
use Symfony\Component\HttpFoundation\Response;

book/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ of the bundle:
418418
If you're following along with this example, you'll need to create a
419419
route that points to this action to see it work.
420420

421-
Walking through this example:
421+
Take a look at the previous example in more detail:
422422

423423
* **lines 9-12** In this section, you instantiate and work with the ``$product``
424424
object like any other, normal PHP object.
@@ -963,7 +963,7 @@ table, and ``product.category_id`` column, and new foreign key:
963963
Saving Related Entities
964964
~~~~~~~~~~~~~~~~~~~~~~~
965965

966-
Now, to see the code in action. Imagine you're inside a controller::
966+
Now you can see this new code in action! Imagine you're inside a controller::
967967

968968
// ...
969969

book/forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ of code. Of course, you'll usually need much more flexibility when rendering:
576576
<input type="submit" />
577577
</form>
578578

579-
Taking a look at each part:
579+
Take a look at each part:
580580

581581
* ``form_enctype(form)`` - If at least one field is a file upload field, this
582582
renders the obligatory ``enctype="multipart/form-data"``;

book/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ development! Your distribution may contain some sample code - check the
188188
to learn about what sample code was included with your distribution and how
189189
you can remove it later.
190190

191-
If you're new to Symfony, look at ":doc:`page_creation`", where you'll
191+
If you're new to Symfony, check out ":doc:`page_creation`", where you'll
192192
learn how to create pages, change configuration, and do everything else you'll
193193
need in your new application.
194194

components/console/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can install the component in many different ways:
2323
Creating a basic Command
2424
------------------------
2525

26-
To make a console command to greet you from the command line, create ``GreetCommand.php``
26+
To make a console command that greets you from the command line, create ``GreetCommand.php``
2727
and add the following to it::
2828

2929
namespace Acme\DemoBundle\Command;

quick_tour/the_view.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Decorating Templates
9898
--------------------
9999

100100
More often than not, templates in a project share common elements, like the
101-
well-known header and footer. In Symfony2, this problem is thought about
101+
well-known header and footer. In Symfony2, you think about this problem
102102
differently: a template can be decorated by another one. This works exactly
103103
the same as PHP classes: template inheritance allows you to build a base
104104
"layout" template that contains all the common elements of your site and

reference/constraints/Valid.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object and all sub-objects associated with it.
1616
Basic Usage
1717
-----------
1818

19-
In the following example, you create two classes ``Author`` and ``Address``
19+
In the following example, create two classes ``Author`` and ``Address``
2020
that both have constraints on their properties. Furthermore, ``Author`` stores
2121
an ``Address`` instance in the ``$address`` property.
2222

0 commit comments

Comments
 (0)