@@ -68,21 +68,16 @@ The route is simple:
6868
6969 return $collection;
7070
71- ..note ::
72-
73- When defining routes, the key (e.g. ``blog_show ``) is meaningless.
74- Just be sure that it's unique so no other lines override it. In most cases, a
75- vendorname_shortbundlename_controllername_actionname pattern
76- (e.g. ``acme_blog_show ``) is appropriate.
77-
7871 ..versionadded ::2.2
7972 The ``path `` option was introduced in Symfony 2.2, ``pattern `` is used
8073 in older versions.
8174
8275The path defined by the ``blog_show `` route acts like ``/blog/* `` where
8376the wildcard is given the name ``slug ``. For the URL ``/blog/my-blog-post ``,
8477the ``slug `` variable gets a value of ``my-blog-post ``, which is available
85- for you to use in your controller (keep reading).
78+ for you to use in your controller (keep reading). The ``blog_show `` is the
79+ internal name of the route, which doesn't have any meaning yet and just needs
80+ to be unique. Later, you'll use it to generate URLs.
8681
8782The ``_controller `` parameter is a special key that tells Symfony which controller
8883should be executed when a URL matches this route. The ``_controller `` string