Skip to content

Fix grammar mistake #10629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions http_cache/esi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ First, to use ESI, be sure to enable it in your application configuration:

Now, suppose you have a page that is relatively static, except for a news
ticker at the bottom of the content. With ESI, you can cache the news ticker
independent of the rest of the page::
independently of the rest of the page::
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
independently of the rest of the page::
independently from the rest of the page::


// src/AppBundle/Controller/DefaultController.php

Expand Down Expand Up @@ -158,7 +158,7 @@ used ``render()``.
specification that is supported out of the box by the Symfony reverse
proxy.

The embedded action can now specify its own caching rules, entirely independent
The embedded action can now specify its own caching rules entirely independently
of the master page::
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
of the master page::
from the master page::


// src/AppBundle/Controller/NewsController.php
Expand Down