[Pkg-owncloud-commits] [owncloud-doc] 05/09: More typos corrected.
David Prévot
taffit at moszumanska.debian.org
Sun May 18 21:30:27 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 9e8dd8a87c9a4ea7eff558007f3e9b70d2045397
Author: Sam Wilson <sam at samwilson.id.au>
Date: Tue May 13 12:27:50 2014 +0800
More typos corrected.
Another missing semicolon, and a duplicated 'function'.
---
developer_manual/app/appframework/database.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/developer_manual/app/appframework/database.rst b/developer_manual/app/appframework/database.rst
index 1a550a0..9f473a8 100644
--- a/developer_manual/app/appframework/database.rst
+++ b/developer_manual/app/appframework/database.rst
@@ -37,12 +37,12 @@ Getters and setters will automatically be created for all public attributes. Sho
// cast timestamp to an int when fromRow is being called
// the second parameter is the argument that is passed to
// the php function settype()
- $this->addType('timestamp', 'int')
+ $this->addType('timestamp', 'int');
}
// transform username to lower case
- public function function setName($name){
+ public function setName($name){
$name = strtolower($name);
parent::setName($name);
}
--
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