Skip to content

Commit

Permalink
Merge branch '2.5'
Browse files Browse the repository at this point in the history
* 2.5:
  Fix spelling
  Changed to reference the correct twig template
  Fix spelling
  Fix PropertyAccessorBuilder usage
  • Loading branch information
weaverryan committed Oct 8, 2014
2 parents 6405a21 + bbcb866 commit 10e6f05
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/property_access/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ enable this feature by using :class:`Symfony\\Component\\PropertyAccess\\Propert
$person = new Person();

// Enable magic __call
$accessor = PropertyAccess::getPropertyAccessorBuilder()
$accessor = PropertyAccess::createPropertyAccessorBuilder()
->enableMagicCall()
->getPropertyAccessor();

Expand Down Expand Up @@ -301,7 +301,7 @@ see `Enable other Features`_.
$person = new Person();
// Enable magic __call
$accessor = PropertyAccess::getPropertyAccessorBuilder()
$accessor = PropertyAccess::createPropertyAccessorBuilder()
->enableMagicCall()
->getPropertyAccessor();
Expand Down
2 changes: 1 addition & 1 deletion cookbook/configuration/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ the FastCGI process manager ``php-fpm`` binary and Apache's FastCGI module
installed (for example, on a Debian based system you have to install the
``libapache2-mod-fastcgi`` and ``php5-fpm`` packages).

PHP-FPM uses so called *pools* to handle incoming FastCGI requests. You can
PHP-FPM uses so-called *pools* to handle incoming FastCGI requests. You can
configure an arbitrary number of pools in the FPM configuration. In a pool
you configure either a TCP socket (IP and port) or a unix domain socket to
listen on. Each pool can also be run under a different UID and GID:
Expand Down
2 changes: 1 addition & 1 deletion quick_tour/the_view.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ First, create an ``embedded.html.twig`` template:
{# src/Acme/DemoBundle/Resources/views/Demo/embedded.html.twig #}
Hello {{ name }}
And change the ``index.html.twig`` template to include it:
And change the ``hello.html.twig`` template to include it:

.. code-block:: jinja
Expand Down

0 comments on commit 10e6f05

Please sign in to comment.