From 2f3ee6d61715aee60b787410f33b6b4b931c783d Mon Sep 17 00:00:00 2001 From: Romaric Drigon Date: Thu, 3 Oct 2013 09:53:44 +0200 Subject: [PATCH] Fixed typos --- README.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 84ff630..7f426c4 100644 --- a/README.rst +++ b/README.rst @@ -31,6 +31,15 @@ Edit your ``composer.json`` and add the following package as a **require**: Edit your ``app/AppKernel.php`` and add the bundle to the **registerBundles** method: +.. code-block:: php + + public function registerBundles() + { + $bundles = array( + // ... + new Alex\AsseticExtraBundle\AlexAsseticExtraBundle(), + // ... + Configuration ------------- @@ -63,7 +72,7 @@ To use it, use the filter in your ``{% stylesheets %}`` template blocks: .. code-block:: html+jinja - {% stylesheets filters="combine,assetdirectory" + {% stylesheets filter="combine,assetdirectory" "@SomeBundle/Resources/assets/form.css" "../vendor/path/to/some.js" %}