From b89cfc09b8398ed9152c315ea09357b6e154ecf2 Mon Sep 17 00:00:00 2001 From: Euge Starr Date: Mon, 10 Apr 2017 13:40:48 +1200 Subject: [PATCH] Update http_cache.rst minor grammar updates --- http_cache.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http_cache.rst b/http_cache.rst index 46b8afbf7e1..a7888d03279 100644 --- a/http_cache.rst +++ b/http_cache.rst @@ -27,7 +27,7 @@ cache system. Since caching with HTTP isn't unique to Symfony, many articles already exist on the topic. If you're new to HTTP caching, Ryan Tomayko's article -`Things Caches Do`_ is *highly* recommended . Another in-depth resource is Mark +`Things Caches Do`_ is *highly* recommended. Another in-depth resource is Mark Nottingham's `Cache Tutorial`_. .. index:: @@ -53,7 +53,7 @@ Along the way, the cache will store each response that is deemed "cacheable" the cache sends the cached response to the client, ignoring your application entirely. -This type of cache is known as a HTTP gateway cache and many exist such +This type of cache is known as an HTTP gateway cache and many exist such as `Varnish`_, `Squid in reverse proxy mode`_, and the Symfony reverse proxy. .. tip::