@@ -1134,10 +1134,10 @@ Generating URLs
11341134---------------
11351135
11361136The routing system should also be used to generate URLs. In reality, routing
1137- is abi-directional system: mapping the URL to a controller+parameters and
1137+ is abidirectional system: mapping the URL to a controller+parameters and
11381138a route+parameters back to a URL. The
11391139:method: `Symfony\\ Component\\ Routing\\ Router::match ` and
1140- :method: `Symfony\\ Component\\ Routing\\ Router::generate ` methods form thisbi-directional
1140+ :method: `Symfony\\ Component\\ Routing\\ Router::generate ` methods form thisbidirectional
11411141system. Take the ``blog_show `` example route from earlier::
11421142
11431143 $params = $this->get('router')->match('/blog/my-blog-post');
@@ -1272,7 +1272,7 @@ Summary
12721272Routing is a system for mapping the URL of incoming requests to the controller
12731273function that should be called to process the request. It both allows you
12741274to specify beautiful URLs and keeps the functionality of your application
1275- decoupled from those URLs. Routing is atwo-way mechanism, meaning that it
1275+ decoupled from those URLs. Routing is abidirectional mechanism, meaning that it
12761276should also be used to generate URLs.
12771277
12781278Learn more from the Cookbook