summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-09-16 09:07:24 +0200
committerAndrey Andreev <narf@devilix.net>2014-09-16 09:07:24 +0200
commite18dfa3d55a254b00872aa82a8cb939d679a8e5b (patch)
treeddbba79ae827d52a9d58f4c29b808c2f8ac5d225
parenta135a18fe99ccf4f27dabc6c4a045e42cd239cea (diff)
parentcbde7d4762bdfa1d476e01bb33bd56fa962ad140 (diff)
Merge pull request #3235 from aanbar/fix-docs
removed extra quote
-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'))
)
);