From f4d40e7a9033ab2ee206858d73ce7767711f50bc Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 7 Apr 2014 17:12:20 +0200 Subject: [PATCH] [Cookbook][Sessions] some language improvements --- cookbook/session/proxy_examples.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cookbook/session/proxy_examples.rst b/cookbook/session/proxy_examples.rst index 47020a39359..34c28d78f99 100644 --- a/cookbook/session/proxy_examples.rst +++ b/cookbook/session/proxy_examples.rst @@ -1,5 +1,5 @@ .. index:: - single: Sessions, session proxy, proxy + single: Sessions, Session Proxy, Proxy Session Proxy Examples ====================== @@ -16,7 +16,7 @@ is injected into the proxy and registered with the session storage driver:: $session = new Session(new NativeSessionStorage(array(), $proxy)); Below, you'll learn two real examples that can be used for ``YourProxy``: -encryption of session data and readonly guest session. +encryption of session data and readonly guest sessions. Encryption of Session Data -------------------------- @@ -56,8 +56,8 @@ Readonly Guest Sessions ----------------------- There are some applications where a session is required for guest users, but -there is no particular need to persist the session. In this case you can -intercept the session before it writes:: +where there is no particular need to persist the session. In this case you +can intercept the session before it is written:: use Foo\User; use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;