summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorAhmad Anbar <aanbar@gmail.com>2014-09-15 17:22:08 +0200
committerAhmad Anbar <aanbar@gmail.com>2014-09-15 17:22:08 +0200
commitcbde7d4762bdfa1d476e01bb33bd56fa962ad140 (patch)
treeddbba79ae827d52a9d58f4c29b808c2f8ac5d225 /user_guide_src
parenta135a18fe99ccf4f27dabc6c4a045e42cd239cea (diff)
removed extra quote
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/libraries/form_validation.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst
index 2b7780ff2..aae9e3b89 100644
--- a/user_guide_src/source/libraries/form_validation.rst
+++ b/user_guide_src/source/libraries/form_validation.rst
@@ -519,7 +519,7 @@ the second element of an array, with the first one being the rule name::
'username', 'Username',
array(
'required',
- array('username_callable', array($this->users_model', 'valid_username'))
+ array('username_callable', array($this->users_model, 'valid_username'))
)
);