From cfa3bc4303c0658bd0d8e1e6a25f2ec6ac6bf289 Mon Sep 17 00:00:00 2001 From: Ilya Antipenko Date: Tue, 19 Jan 2016 10:33:48 +0200 Subject: [PATCH] Remove excessive pluses --- cookbook/form/unit_testing.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cookbook/form/unit_testing.rst b/cookbook/form/unit_testing.rst index 3791d0c0aaa..6ab99830165 100644 --- a/cookbook/form/unit_testing.rst +++ b/cookbook/form/unit_testing.rst @@ -165,10 +165,10 @@ It often happens that you use some options that are added by :doc:`form extensions `. One of the cases may be the ``ValidatorExtension`` with its ``invalid_message`` option. The ``TypeTestCase`` only loads the core form extension, which means an -+:class:`Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException` -+will be raised if you try to test a class that depends on other extensions. -+The :method:`Symfony\\Component\\Form\\Test\\TypeTestCase::getExtensions` method -+allows you to return a list of extensions to register:: +:class:`Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException` +will be raised if you try to test a class that depends on other extensions. +The :method:`Symfony\\Component\\Form\\Test\\TypeTestCase::getExtensions` method +allows you to return a list of extensions to register:: // src/AppBundle/Tests/Form/Type/TestedTypeTests.php namespace AppBundle\Tests\Form\Type;