Skip to content

Commit 404f18d

Browse files
committed
Minor tweak for symfony#1603
1 parent 2352e7e commit 404f18d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/routing/method_parameters.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The HTTP method of a request is one of the requirements that can be checked
88
when seeing if it matches a route. This is introduced in the routing chapter
99
of the book ":doc:`/book/routing`" with examples using GET and POST. You
1010
can also use other HTTP verbs in this way. For example, if you have a blog
11-
post entry then you could use the same url pattern to show it, make changes
11+
post entry then you could use the same URL pattern to show it, make changes
1212
to it and delete it by matching on GET, PUT and DELETE.
1313

1414
.. configuration-block::
@@ -86,7 +86,7 @@ to it and delete it by matching on GET, PUT and DELETE.
8686
Unfortunately, life isn't quite this simple, since most browsers do not
8787
support sending PUT and DELETE requests. Fortunately Symfony2 provides you
8888
with a simple way of working around this limitation. By including a ``_method``
89-
parameter in the query string or parameters of an HTTP request Symfony2 will
89+
parameter in the query string or parameters of an HTTP request, Symfony2 will
9090
use this as the method when matching routes. This can be done easily in forms
9191
with a hidden field. Suppose you have a form for editing a blog post:
9292

0 commit comments

Comments
 (0)