@@ -11,7 +11,7 @@ The Intl Component
1111.. caution ::
1212
1313 The replacement layer is limited to the ``en `` locale. If you want to use
14- other locales, you should `install the intl extension `_. There is no conflict
14+ other locales, you should `install the intl extension `_. There is no conflict
1515 between the two because, even if you use the extension, this package can still
1616 be useful to access the ICU data.
1717
@@ -231,9 +231,9 @@ Locales
231231~~~~~~~
232232
233233A locale is the combination of a language, a region and some parameters that
234- define the interface preferences of the user. For example, "Chinese" is the
235- language and ``zh_Hans_MO `` is the locale for "Chinese" (language) + "Simplified"
236- (script) + "Macau SAR China" (region). The ``Locales `` class provides access to
234+ define the interface preferences of the user. For example, "Chinese" is the
235+ language and ``zh_Hans_MO `` is the locale for "Chinese" (language) + "Simplified"
236+ (script) + "Macau SAR China" (region). The ``Locales `` class provides access to
237237the name of all locales::
238238
239239 use Symfony\Component\Intl\Locales;
@@ -351,7 +351,7 @@ translate into any locale with the ``getName()`` method shown earlier::
351351The reverse lookup is also possible thanks to the ``getCountryCode() `` method,
352352which returns the code of the country where the given timezone ID belongs to::
353353
354- $countryCode = Timezones::getCountryCode('America/Vancouver')
354+ $countryCode = Timezones::getCountryCode('America/Vancouver');
355355 // => $countryCode = 'CA' (CA = Canada)
356356
357357The `UTC/GMT time offsets `_ of all timezones are provided by ``getRawOffset() ``
0 commit comments