From 865b87870cbb92241d26055f960f92cdac125482 Mon Sep 17 00:00:00 2001 From: Philipp Rieber Date: Tue, 5 Nov 2013 08:30:55 +0100 Subject: [PATCH] Fix spelling for "object-oriented" --- book/internals.rst | 2 +- components/http_foundation/introduction.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/internals.rst b/book/internals.rst index e7bd94369b1..ba221e085b1 100644 --- a/book/internals.rst +++ b/book/internals.rst @@ -30,7 +30,7 @@ on top of the previous one. The deepest level is the :namespace:`Symfony\\Component\\HttpFoundation` component. HttpFoundation provides the main objects needed to deal with HTTP. -It is an Object-Oriented abstraction of some native PHP functions and +It is an object-oriented abstraction of some native PHP functions and variables: * The :class:`Symfony\\Component\\HttpFoundation\\Request` class abstracts diff --git a/components/http_foundation/introduction.rst b/components/http_foundation/introduction.rst index bf2c4ac0fd4..605775fd08a 100644 --- a/components/http_foundation/introduction.rst +++ b/components/http_foundation/introduction.rst @@ -14,7 +14,7 @@ In PHP, the request is represented by some global variables (``$_GET``, generated by some functions (``echo``, ``header``, ``setcookie``, ...). The Symfony2 HttpFoundation component replaces these default PHP global -variables and functions by an Object-Oriented layer. +variables and functions by an object-oriented layer. Installation ------------