Skip to content

Commit 43d206f

Browse files
committed
Fixed plural version of URLs where it was referred to as "URL's"
1 parent 7199787 commit 43d206f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

book/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ Take a quick look at the routes that have been created so far:
476476
return $collection;
477477
478478
Can you spot the problem? Notice that both routes have patterns that match
479-
URL's that look like ``/blog/*``. The Symfony router will always choose the
479+
URLs that look like ``/blog/*``. The Symfony router will always choose the
480480
**first** matching route it finds. In other words, the ``blog_show`` route
481481
will *never* be matched. Instead, a URL like ``/blog/my-blog-post`` will match
482482
the first route (``blog``) and return a nonsense value of ``my-blog-post``

reference/configuration/framework.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,16 @@ assets_base_urls
162162

163163
**default**: ``{ http: [], ssl: [] }``
164164

165-
This option allows you to define base URL's to be used for assets referenced
165+
This option allows you to define base URLs to be used for assets referenced
166166
from ``http`` and ``ssl`` (``https``) pages. A string value may be provided in
167-
lieu of a single-element array. If multiple base URL's are provided, Symfony2
167+
lieu of a single-element array. If multiple base URLs are provided, Symfony2
168168
will select one from the collection each time it generates an asset's path.
169169

170170
For your convenience, ``assets_base_urls`` can be set directly with a string or
171171
array of strings, which will be automatically organized into collections of base
172-
URL's for ``http`` and ``https`` requests. If a URL starts with ``https://`` or
172+
URLs for ``http`` and ``https`` requests. If a URL starts with ``https://`` or
173173
is `protocol-relative`_ (i.e. starts with `//`) it will be added to both
174-
collections. URL's starting with ``http://`` will only be added to the
174+
collections. URLs starting with ``http://`` will only be added to the
175175
``http`` collection.
176176

177177
.. _ref-framework-assets-version:

0 commit comments

Comments
 (0)