From 71a9a959ce84a30b940dbd8046ad2e30259a2ccb Mon Sep 17 00:00:00 2001 From: Babar Al-Amin Date: Wed, 17 Dec 2014 02:07:52 +0600 Subject: [PATCH 1/3] Spelling mistake tens to tons I'm not sure, but I think it should be tons, not tens. --- quick_tour/the_architecture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_architecture.rst b/quick_tour/the_architecture.rst index b3fab62cf1c..97947490a37 100644 --- a/quick_tour/the_architecture.rst +++ b/quick_tour/the_architecture.rst @@ -246,7 +246,7 @@ the Twig templating system and some other third party libraries and bundles. Understanding the Cache and Logs -------------------------------- -Symfony applications can contain tens of configuration files defined in several +Symfony applications can contain tons of configuration files defined in several formats (YAML, XML, PHP, etc.) Instead of parsing and combining all those files for each request, Symfony uses its own cache system. In fact, the application configuration is only parsed for the very first request and then compiled down From 666b07294dd9c042bd17c466bc763e302367678e Mon Sep 17 00:00:00 2001 From: Babar Al-Amin Date: Wed, 17 Dec 2014 20:25:33 +0600 Subject: [PATCH 2/3] Changed "tens of" to "several" Changed "tens of" to "several" as proposed in PR #4664 --- quick_tour/the_architecture.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick_tour/the_architecture.rst b/quick_tour/the_architecture.rst index 97947490a37..0fb0dc01a07 100644 --- a/quick_tour/the_architecture.rst +++ b/quick_tour/the_architecture.rst @@ -24,7 +24,7 @@ The ``web/`` Directory The web root directory is the home of all public and static files like images, stylesheets, and JavaScript files. It is also where each :term:`front controller` lives, such as the production controller shown here:: - +t // web/app.php require_once __DIR__.'/../app/bootstrap.php.cache'; require_once __DIR__.'/../app/AppKernel.php'; @@ -246,7 +246,7 @@ the Twig templating system and some other third party libraries and bundles. Understanding the Cache and Logs -------------------------------- -Symfony applications can contain tons of configuration files defined in several +Symfony applications can contain several configuration files defined in several formats (YAML, XML, PHP, etc.) Instead of parsing and combining all those files for each request, Symfony uses its own cache system. In fact, the application configuration is only parsed for the very first request and then compiled down From 3cebbedc0521679ce7aeecefbff4bd49f89ff522 Mon Sep 17 00:00:00 2001 From: Babar Al-Amin Date: Wed, 17 Dec 2014 20:26:09 +0600 Subject: [PATCH 3/3] Update the_architecture.rst --- quick_tour/the_architecture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_architecture.rst b/quick_tour/the_architecture.rst index 0fb0dc01a07..8e353c6ccd1 100644 --- a/quick_tour/the_architecture.rst +++ b/quick_tour/the_architecture.rst @@ -24,7 +24,7 @@ The ``web/`` Directory The web root directory is the home of all public and static files like images, stylesheets, and JavaScript files. It is also where each :term:`front controller` lives, such as the production controller shown here:: -t + // web/app.php require_once __DIR__.'/../app/bootstrap.php.cache'; require_once __DIR__.'/../app/AppKernel.php';