Skip to content

[Intl] Add link refs for classes #17150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/intl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ to catching the exception, you can also check if a given script code is valid::
Country Names
~~~~~~~~~~~~~

The ``Countries`` class provides access to the name of all countries according
The :class:`Symfony\\Component\\Intl\\Countries` class provides access to the name of all countries according
to the `ISO 3166-1 alpha-2`_ list and the `ISO 3166-1 alpha-3`_ list
of officially recognized countries and territories::

Expand Down Expand Up @@ -233,7 +233,7 @@ Locales
A locale is the combination of a language, a region and some parameters that
define the interface preferences of the user. For example, "Chinese" is the
language and ``zh_Hans_MO`` is the locale for "Chinese" (language) + "Simplified"
(script) + "Macau SAR China" (region). The ``Locales`` class provides access to
(script) + "Macau SAR China" (region). The :class:`Symfony\\Component\\Intl\\Locales` class provides access to
the name of all locales::

use Symfony\Component\Intl\Locales;
Expand Down Expand Up @@ -269,7 +269,7 @@ to catching the exception, you can also check if a given locale code is valid::
Currencies
~~~~~~~~~~

The ``Currencies`` class provides access to the name of all currencies as well
The :class:`Symfony\\Component\\Intl\\Currencies` class provides access to the name of all currencies as well
as some of their information (symbol, fraction digits, etc.)::

use Symfony\Component\Intl\Currencies;
Expand Down Expand Up @@ -317,7 +317,7 @@ to catching the exception, you can also check if a given currency code is valid:
Timezones
~~~~~~~~~

The ``Timezones`` class provides several utilities related to timezones. First,
The :class:`Symfony\\Component\\Intl\\Timezones` class provides several utilities related to timezones. First,
you can get the name and values of all timezones in all languages::

use Symfony\Component\Intl\Timezones;
Expand Down