Skip to content

Commit

Permalink
Fixed issues discovered by the human reviewers
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj committed Jul 28, 2015
1 parent b85837f commit 0d28306
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions components/class_loader/class_loader.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ is straightforward::
The autoloader is automatically registered in a Symfony application
(see ``app/autoload.php``).

Use the :method:`Symfony\\Component\\ClassLoader\\ClassLoader::addPrefix`
or :method:`Symfony\\Component\\ClassLoader\\ClassLoader::addPrefixes` methods
to register your classes::
Use :method:`Symfony\\Component\\ClassLoader\\ClassLoader::addPrefix` or
:method:`Symfony\\Component\\ClassLoader\\ClassLoader::addPrefixes` to register
your classes::

// register a single namespaces
$loader->addPrefix('Symfony', __DIR__.'/vendor/symfony/symfony/src');
Expand Down
5 changes: 2 additions & 3 deletions components/config/resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ Loading Resources
Locating Resources
------------------

Loading the configuration normally starts with a search for resources –
in most cases: files. This can be done with the
:class:`Symfony\\Component\\Config\\FileLocator`::
Loading the configuration normally starts with a search for resources, mostly
files. This can be done with the :class:`Symfony\\Component\\Config\\FileLocator`::

use Symfony\Component\Config\FileLocator;

Expand Down
2 changes: 1 addition & 1 deletion components/dependency_injection/compilation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ The Extension must specify a ``getAlias`` method to implement the interface::
}
}

For YAML configuration files specifying the alias for the Extension as a
For YAML configuration files specifying the alias for the extension as a
key will mean that those values are passed to the Extension's ``load`` method:

.. code-block:: yaml
Expand Down

0 comments on commit 0d28306

Please sign in to comment.