[Pkg-owncloud-commits] [owncloud-doc] 40/270: fix typos
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 2daa876cf2fc61734f1f923f90218c8f57ee9755
Author: Morris Jobke <hey at morrisjobke.de>
Date: Wed May 7 20:01:09 2014 +0200
fix typos
---
developer_manual/app/container.rst | 4 ++--
developer_manual/app/schema.rst | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/developer_manual/app/container.rst b/developer_manual/app/container.rst
index 506b749..ccc4c57 100644
--- a/developer_manual/app/container.rst
+++ b/developer_manual/app/container.rst
@@ -3,7 +3,7 @@ Container
.. sectionauthor:: Bernhard Posselt <dev at bernhard-posselt.com>
-The App Framework assembles the application by using an Inversion of Control container which does :doc:`../general/dependencyinjection`. Dependency Injection helps you to create testable and maintainable code. For a very simple and good Tutorial, watch the `Dependency Injection and the art of Services and Containers Tutorial on YouTube <http://www.youtube.com/watch?v=DcNtg4_i-2w>`_. A broader overview over how it works and what the benefits are can be seen on `Google's Clean Code Talks < [...]
+The App Framework assembles the application by using an Inversion of Control container which does :doc:`../general/dependencyinjection`. Dependency Injection helps you to create testable and maintainable code. For a very simple and good tutorial, watch the `Dependency Injection and the art of Services and Containers Tutorial on YouTube <http://www.youtube.com/watch?v=DcNtg4_i-2w>`_. A broader overview over how it works and what the benefits are can be seen on `Google's Clean Code Talks < [...]
The container is configured in :file:`appinfo/application.php`.
@@ -37,7 +37,7 @@ To add your own classes simply open the :file:`appinfo/application.php` and add
*/
$container->registerService('PageController', function($c){
return new PageController(
- $c->query('AppName'),
+ $c->query('AppName'),
$c->query('ServerContainer')->getRequest()
);
});
diff --git a/developer_manual/app/schema.rst b/developer_manual/app/schema.rst
index eea8377..185f2ea 100644
--- a/developer_manual/app/schema.rst
+++ b/developer_manual/app/schema.rst
@@ -11,7 +11,7 @@ An example database XML file would look like this:
.. code-block:: xml
- <?xml version="1.0" encoding="ISO-8859-1" ?>
+ <?xml version="1.0" encoding="UTF-8" ?>
<database>
<name>*dbname*</name>
<create>true</create>
--
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