File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ The HTTP method of a request is one of the requirements that can be checked
8
8
when seeing if it matches a route. This is introduced in the routing chapter
9
9
of the book ":doc: `/book/routing `" with examples using GET and POST. You
10
10
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
12
12
to it and delete it by matching on GET, PUT and DELETE.
13
13
14
14
.. configuration-block ::
@@ -86,7 +86,7 @@ to it and delete it by matching on GET, PUT and DELETE.
86
86
Unfortunately, life isn't quite this simple, since most browsers do not
87
87
support sending PUT and DELETE requests. Fortunately Symfony2 provides you
88
88
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
90
90
use this as the method when matching routes. This can be done easily in forms
91
91
with a hidden field. Suppose you have a form for editing a blog post:
92
92
You can’t perform that action at this time.
0 commit comments