From 0d39ea0b965bff8555be1c57b347075b2796143d Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 1 Dec 2016 12:31:04 +0100 Subject: [PATCH] fix a typo --- introduction/from_flat_php_to_symfony2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/introduction/from_flat_php_to_symfony2.rst b/introduction/from_flat_php_to_symfony2.rst index 01880870e34..fdd1788c197 100644 --- a/introduction/from_flat_php_to_symfony2.rst +++ b/introduction/from_flat_php_to_symfony2.rst @@ -392,7 +392,7 @@ one of the two controllers (the ``list_action()`` and ``show_action()`` functions) is called. In reality, the front controller is beginning to look and act a lot like how Symfony handles and routes requests. -But but careful not to confuse the terms *front controller* and *controller*. Your +But be careful not to confuse the terms *front controller* and *controller*. Your app will usually have just *one* front controller, which boots your code. You will have *many* controller functions: one for each page.