summaryrefslogtreecommitdiffstats
path: root/user_guide/helpers/inflector_helper.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/helpers/inflector_helper.html')
-rw-r--r--user_guide/helpers/inflector_helper.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/helpers/inflector_helper.html b/user_guide/helpers/inflector_helper.html
index 5329901a2..5bd27783d 100644
--- a/user_guide/helpers/inflector_helper.html
+++ b/user_guide/helpers/inflector_helper.html
@@ -96,7 +96,7 @@ echo plural($word); // Returns "dogs"
<p>To force a word to end with &quot;es&quot; use a second &quot;true&quot; argument. </p>
<code> $word = &quot;pass&quot;;<br />
-echo plural($word); // Returns &quot;passes&quot; </code>
+echo plural($word, TRUE); // Returns &quot;passes&quot; </code>
<h2>camelize()</h2>
<p>Changes a string of words separated by spaces or underscores to camel case. Example:</p>