Skip to content

Commit 703c2a6

Browse files
committed
minor symfony#3772 [Cookbook][Sessions] some language improvements (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- [Cookbook][Sessions] some language improvements | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | Commits ------- f4d40e7 [Cookbook][Sessions] some language improvements
2 parents 3d30b56 + f4d40e7 commit 703c2a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cookbook/session/proxy_examples.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Sessions, session proxy, proxy
2+
single: Sessions, Session Proxy, Proxy
33

44
Session Proxy Examples
55
======================
@@ -16,7 +16,7 @@ is injected into the proxy and registered with the session storage driver::
1616
$session = new Session(new NativeSessionStorage(array(), $proxy));
1717

1818
Below, you'll learn two real examples that can be used for ``YourProxy``:
19-
encryption of session data and readonly guest session.
19+
encryption of session data and readonly guest sessions.
2020

2121
Encryption of Session Data
2222
--------------------------
@@ -56,8 +56,8 @@ Readonly Guest Sessions
5656
-----------------------
5757

5858
There are some applications where a session is required for guest users, but
59-
there is no particular need to persist the session. In this case you can
60-
intercept the session before it writes::
59+
where there is no particular need to persist the session. In this case you
60+
can intercept the session before it is written::
6161

6262
use Foo\User;
6363
use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;

0 commit comments

Comments
 (0)