Skip to content

Commit cfea950

Browse files
committed
Fixed quirks in the Intl documentation
1 parent 4c9b689 commit cfea950

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

components/intl.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ If you install the component via Composer, the following classes and functions
2525
of the intl extension will be automatically provided if the intl extension is
2626
not loaded:
2727

28-
* :phpclass:``Collator``
29-
* :phpclass:``IntlDateFormatter``
30-
* :phpclass:``Locale``
31-
* :phpclass:``NumberFormatter``
32-
* :phpfunction:``intl_error_name``
33-
* :phpfunction:``intl_is_failure``
34-
* :phpfunction:``intl_get_error_code``
35-
* :phpfunction:``intl_get_error_message``
28+
* :phpclass:`Collator`
29+
* :phpclass:`IntlDateFormatter`
30+
* :phpclass:`Locale`
31+
* :phpclass:`NumberFormatter`
32+
* :phpfunction:`intl_error_name`
33+
* :phpfunction:`intl_is_failure`
34+
* :phpfunction:`intl_get_error_code`
35+
* :phpfunction:`intl_get_error_message`
3636

3737
If you don't use Composer but the Symfony ClassLoader component, you need to
3838
load them manually by adding the following lines to your autoload code::
@@ -59,14 +59,14 @@ locales, `install the intl extension`_ instead.
5959
Locale
6060
~~~~~~
6161

62-
The only method supported in the :phpclass:``Locale`` class is
62+
The only method supported in the :phpclass:`Locale` class is
6363
:phpmethod:`Locale::getDefault`. This method will always return "en". All other
6464
methods will throw an exception when used.
6565

6666
NumberFormatter
6767
~~~~~~~~~~~~~~~
6868

69-
Numbers can be formatted with the :phpclass:``NumberFormatter`` class.
69+
Numbers can be formatted with the :phpclass:`NumberFormatter` class.
7070
The following methods are supported. All other methods are not supported and
7171
will throw an exception when used.
7272

@@ -288,7 +288,7 @@ class::
288288
'Data' => array(
289289
'entry1',
290290
'entry2',
291-
...
291+
// ...
292292
),
293293
));
294294

@@ -314,7 +314,7 @@ Writes an array or an array-like object to a .php resource bundle::
314314
'Data' => array(
315315
'entry1',
316316
'entry2',
317-
...
317+
// ...
318318
),
319319
));
320320

0 commit comments

Comments
 (0)