Skip to content

Commit f51faaf

Browse files
Updating some of the changes to use of second person
1 parent 674cc35 commit f51faaf

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

book/http_cache.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,8 +550,7 @@ would return. An ``ETag`` is like a fingerprint and is used to quickly compare
550550
if two different versions of a resource are equivalent. Like fingerprints,
551551
each ``ETag`` must be unique across all representations of the same resource.
552552

553-
As an example here is a simple implementation that generates the ETag as
554-
the md5 of the content::
553+
To see a simple implementation, generate the ETag as the md5 of the content::
555554

556555
public function indexAction()
557556
{

book/page_creation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ to keep your application organized as it grows in users and complexity.
2828
The "Hello Symfony!" Page
2929
-------------------------
3030

31-
To begin with, a spin off of the classic "Hello World!" application. When
31+
Start by building a spin-off of the classic "Hello World!" application. When
3232
you're finished, the user will be able to get a personal greeting (e.g. "Hello Symfony")
3333
by going to the following URL:
3434

@@ -345,7 +345,7 @@ controller, and ``index.html.twig`` the template:
345345
346346
Hello <?php echo $view->escape($name) ?>!
347347
348-
Stepping through the Twig template line-by-line:
348+
Step through the Twig template line-by-line:
349349

350350
* *line 2*: The ``extends`` token defines a parent template. The template
351351
explicitly defines a layout file inside of which it will be placed.

book/propel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Your database has been updated, you can continue to write your application.
320320
Saving Related Objects
321321
~~~~~~~~~~~~~~~~~~~~~~
322322

323-
Now, for the code in action. Imagine you're inside a controller::
323+
Now, try the code in action. Imagine you're inside a controller::
324324

325325
// ...
326326
use Acme\StoreBundle\Model\Category;

book/security.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ perform a certain action.
2020
.. image:: /images/book/security_authentication_authorization.png
2121
:align: center
2222

23-
Since the best way to learn is to see an example, we'll dive right in.
23+
Since the best way to learn is to see an example, start by securing your
24+
application with HTTP Basic authentication.
2425

2526
.. note::
2627

book/service_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ in its constructor, which is easily configurable. As you'll see, the real
540540
power of the container is realized when you need to create a service that
541541
depends on one or more other services in the container.
542542

543-
Starting with an example, suppose you have a new service, ``NewsletterManager``,
543+
As an example, suppose you have a new service, ``NewsletterManager``,
544544
that helps to manage the preparation and delivery of an email message to
545545
a collection of addresses. Of course the ``my_mailer`` service is already
546546
really good at delivering email messages, so you'll use it inside ``NewsletterManager``

book/templating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ route:
724724
return $collection;
725725
726726
In this case, you need to specify both the route name (``article_show``) and
727-
a value for the ``{slug}`` parameter. Using this route, let's revisit the
727+
a value for the ``{slug}`` parameter. Using this route, revisit the
728728
``recentList`` template from the previous section and link to the articles
729729
correctly:
730730

0 commit comments

Comments
 (0)