From f3c151cff8b0bd29c3522b41d6230ac9ff298d63 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 15 May 2013 19:27:42 +0200 Subject: [PATCH] reworded slightly some sentence to convert the text from a series of articles to a book --- book/part01.rst | 12 ++++++------ book/part02.rst | 9 ++++----- book/part04.rst | 4 ++-- book/part08.rst | 14 +++++++------- book/part09.rst | 2 +- book/part10.rst | 2 +- book/part11.rst | 12 ++++++------ book/part12.rst | 17 +++++++++-------- 8 files changed, 36 insertions(+), 36 deletions(-) diff --git a/book/part01.rst b/book/part01.rst index b65e4f257a1..513cb82d243 100644 --- a/book/part01.rst +++ b/book/part01.rst @@ -6,7 +6,7 @@ components that solve common web development problems. Instead of using these low-level components, you can use the ready-to-be-used Symfony2 full-stack web framework, which is based on these components... or -you can create your very own framework. This series is about the latter. +you can create your very own framework. This book is about the latter. .. note:: @@ -48,7 +48,7 @@ Symfony2 Components. .. tip:: - If you don't have time to read the whole series, or if you want to get + If you don't have time to read the whole book, or if you want to get started fast, you can also have a look at `Silex`_, a micro-framework based on the Symfony2 Components. The code is rather slim and it leverages many aspects of the Symfony2 Components. @@ -56,8 +56,8 @@ Symfony2 Components. Many modern web frameworks call themselves MVC frameworks. We won't talk about MVC here as the Symfony2 Components are able to create any type of frameworks, not just the ones that follow the MVC architecture. Anyway, if you have a look -at the MVC semantics, this series is about how to create the Controller part -of a framework. For the Model and the View, it really depends on your personal +at the MVC semantics, this book is about how to create the Controller part of +a framework. For the Model and the View, it really depends on your personal taste and I will let you use any existing third-party libraries (Doctrine, Propel, or plain-old PDO for the Model; PHP or Twig for the View). @@ -147,8 +147,8 @@ start with the simplest web application we can think of in PHP:: printf('Hello %s', $input); -That's all for the first part of this series. Next time, we will introduce the -HttpFoundation Component and see what it brings us. +In the next chapter, we are going to introduce the HttpFoundation Component +and see what it brings us. .. _`Symfony2`: http://symfony.com/ .. _`documentation`: http://symfony.com/doc diff --git a/book/part02.rst b/book/part02.rst index b000de0d201..c86da9deabb 100644 --- a/book/part02.rst +++ b/book/part02.rst @@ -15,8 +15,8 @@ framework from scratch. developers; the Internet has already plenty of good resources on that topic. -Even if the "application" we wrote yesterday was simple enough, it suffers -from a few problems:: +Even if the "application" we wrote in the previous chapter was simple enough, +it suffers from a few problems::