Skip to content

Commit 6f9c74e

Browse files
committed
change to URI to be more consistent. fix typo. lower case Session
1 parent 0338f96 commit 6f9c74e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/http_foundation/introduction.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ a request::
199199
);
200200

201201
The :method:`Symfony\\Component\\HttpFoundation\\Request::create` method
202-
creates a request based on a path info, a method and some parameters (the
202+
creates a request based on a URI, a method and some parameters (the
203203
query parameters or the request ones depending on the HTTP method); and of
204-
course, you an also override all other variables as well (by default, Symfony
204+
course, you can also override all other variables as well (by default, Symfony
205205
creates sensible defaults for all the PHP global variables).
206206

207207
Based on such a request, you can override the PHP global variables via
@@ -223,7 +223,7 @@ If you have a session attached to the Request, you can access it via the
223223
:method:`Symfony\\Component\\HttpFoundation\\Request::getSession` method;
224224
the
225225
:method:`Symfony\\Component\\HttpFoundation\\Request::hasPreviousSession`
226-
method tells you if the request contains a Session which was started in one of
226+
method tells you if the request contains a session which was started in one of
227227
the previous requests.
228228

229229
Accessing `Accept-*` Headers Data

0 commit comments

Comments
 (0)