From 71126b1e7e293d2c5da31ab50d0f476667165820 Mon Sep 17 00:00:00 2001 From: Sebastian Goettschkes Date: Sat, 8 Dec 2012 13:17:19 +0100 Subject: [PATCH] Rephrasing paragraph to make it better understandable --- book/http_fundamentals.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/http_fundamentals.rst b/book/http_fundamentals.rst index eeda35a751c..267aaff25b0 100644 --- a/book/http_fundamentals.rst +++ b/book/http_fundamentals.rst @@ -357,9 +357,9 @@ Almost all modern web apps do this - including apps like WordPress. Stay Organized ~~~~~~~~~~~~~~ -But inside your front controller, how do you know which page should -be rendered and how can you render each in a sane way? One way or another, you'll need to -check the incoming URI and execute different parts of your code depending +Inside your front controller, you have to figure out which code should be +executed and what the content of to return should be. To figure this out, you'll +need to check the incoming URI and execute different parts of your code depending on that value. This can get ugly quickly:: // index.php