Skip to content

2.3 only: Making consistent component names #3189

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
Nov 27, 2013
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions components/debug.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
The Debug Component
===================

The Debug Component provides tools to ease debugging PHP code.
The Debug component provides tools to ease debugging PHP code.

.. versionadded:: 2.3
The Debug Component is new to Symfony 2.3. Previously, the classes were
located in the ``HttpKernel`` component.
The Debug component is new to Symfony 2.3. Previously, the classes were
located in the HttpKernel component.

Installation
------------
Expand Down
10 changes: 5 additions & 5 deletions components/intl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ code::
The intl extension internally uses the `ICU library`_ to obtain localization
data such as number formats in different languages, country names and more.
To make this data accessible to userland PHP libraries, Symfony2 ships a copy
in the `ICU component`_.
in the `Icu component`_.

Depending on the ICU version compiled with your intl extension, a matching
version of that component needs to be installed. It sounds complicated,
Expand All @@ -87,7 +87,7 @@ code::

For example, consider that your development machines ship ICU 4.8 and the server
ICU 4.2. When you run ``php composer.phar update`` on the development machine, version
1.2.* of the ICU component will be installed. But after deploying the
1.2.* of the Icu component will be installed. But after deploying the
application, ``php composer.phar install`` will fail with the following error:

.. code-block:: bash
Expand All @@ -102,7 +102,7 @@ code::
library icu has the wrong version installed or is missing from your
system, make sure to have the extension providing it.

The error tells you that the requested version of the ICU component, version
The error tells you that the requested version of the Icu component, version
1.2, is not compatible with PHP's ICU version 4.2.

One solution to this problem is to run ``php composer.phar update`` instead of
Expand All @@ -118,7 +118,7 @@ code::
$ php -i | grep ICU
ICU version => 4.2.1

Then fix the ICU component in your composer.json file to a matching version:
Then fix the Icu component in your ``composer.json`` file to a matching version:

.. code-block:: json

Expand Down Expand Up @@ -408,7 +408,7 @@ to the current default locale::
That's all you need to know for now. Have fun coding!

.. _Packagist: https://packagist.org/packages/symfony/intl
.. _ICU component: https://packagist.org/packages/symfony/icu
.. _Icu component: https://packagist.org/packages/symfony/icu
.. _intl extension: http://www.php.net/manual/en/book.intl.php
.. _install the intl extension: http://www.php.net/manual/en/intl.setup.php
.. _ICU library: http://site.icu-project.org/
2 changes: 1 addition & 1 deletion cookbook/configuration/front_controllers_and_kernel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ to `decorate`_ the kernel with additional features. Examples include:
* Adding HTTP level caching by wrapping the kernel with an instance of
:ref:`AppCache <symfony-gateway-cache>`;
* Enabling (or skipping) the :doc:`ClassCache </cookbook/debugging>`
* Enabling the :doc:`Debug Component </components/debug>`.
* Enabling the :doc:`Debug component </components/debug>`.

The front controller can be chosen by requesting URLs like:

Expand Down