[Pkg-owncloud-commits] [owncloud-doc] 39/270: fix typo

David Prévot taffit at moszumanska.debian.org
Thu Jul 31 03:52:59 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud-doc.

commit a41906afb5bf6872c2e9a84be3de1ab44fd80bf2
Author: Morris Jobke <hey at morrisjobke.de>
Date:   Wed May 7 19:42:12 2014 +0200

    fix typo
---
 developer_manual/app/request.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/developer_manual/app/request.rst b/developer_manual/app/request.rst
index 5a07348..1ad53f4 100644
--- a/developer_manual/app/request.rst
+++ b/developer_manual/app/request.rst
@@ -15,7 +15,7 @@ The following sections will present an overview over how that request is being p
 Front controller
 ----------------
 In the beginning, all requests are sent to ownCloud's :file:`index.php` which in turn executes :file:`lib/base.php`. This file inspects the HTTP headers and abstracts away differences between different webservers and initializes the basic classes. Afterwards the basic apps are being loaded in the following order:
-    
+
 * Authentication backends
 * Filesystem
 * Logging
@@ -36,7 +36,7 @@ The router parses the :doc:`apps routing files <routes>` (:file:`appinfo/routes.
 Middleware
 ----------
 A :doc:`Middleware <middleware>` is a convenient way to execute common tasks such as custom authentication before or after a :doc:`controller method <controllers>` is being run. You can execute code at the following locations:
-    
+
 * before the call of the controller method
 * after the call of the controller method
 * after an exception is thrown (also if it is thrown from a middleware, e.g. if an authentication fails)
@@ -44,7 +44,7 @@ A :doc:`Middleware <middleware>` is a convenient way to execute common tasks suc
 
 Container
 ---------
-The :doc:`container` is the place where you define all of your classes and in particular all your of controllers. The container is responsible for assembling all of your objects (newing your classes) that should only have one single instance without relying on globals or singletons. If you want to know more about why you should use it and what the benefits are, read up on the topic :doc:`../general/dependencyinjection`
+The :doc:`container` is the place where you define all of your classes and in particular all of your controllers. The container is responsible for assembling all of your objects (newing your classes) that should only have one single instance without relying on globals or singletons. If you want to know more about why you should use it and what the benefits are, read up on the topic :doc:`../general/dependencyinjection`
 
 Controller
 ----------

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-doc.git



More information about the Pkg-owncloud-commits mailing list