From 70e4775d584ea440f76584425ece42bad5682d4b Mon Sep 17 00:00:00 2001 From: Geert De Deckere Date: Tue, 28 Oct 2014 16:16:47 +0100 Subject: [PATCH] Minor spelling fix --- book/forms.rst | 2 +- book/http_fundamentals.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/forms.rst b/book/forms.rst index c8b41c1a6be..85b1b116dcb 100644 --- a/book/forms.rst +++ b/book/forms.rst @@ -6,7 +6,7 @@ Forms Dealing with HTML forms is one of the most common - and challenging - tasks for a web developer. Symfony integrates a Form component that makes dealing with -forms easy. In this chapter, you'll build a complex form from the ground-up, +forms easy. In this chapter, you'll build a complex form from the ground up, learning the most important features of the form library along the way. .. note:: diff --git a/book/http_fundamentals.rst b/book/http_fundamentals.rst index 9db26128b90..05293bc7259 100644 --- a/book/http_fundamentals.rst +++ b/book/http_fundamentals.rst @@ -37,7 +37,7 @@ HTTP is the term used to describe this simple text-based language. And no matter how you develop on the web, the goal of your server is *always* to understand simple text requests, and return simple text responses. -Symfony is built from the ground-up around that reality. Whether you realize +Symfony is built from the ground up around that reality. Whether you realize it or not, HTTP is something you use everyday. With Symfony, you'll learn how to master it.