summaryrefslogtreecommitdiffstats
path: root/system/helpers/inflector_helper.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-05-17 14:20:16 +0200
committerTimothy Warren <tim@timshomepage.net>2012-05-17 14:20:16 +0200
commit16642c71403f4463dfe6e83c13a0e3120474cd1d (patch)
tree78b8f18233f326820be2fca984cba31754b8a084 /system/helpers/inflector_helper.php
parente8e09039b49ac5883e9e94162579841375e13c69 (diff)
Update inflector docblocks, add changelog entry
Diffstat (limited to 'system/helpers/inflector_helper.php')
-rw-r--r--system/helpers/inflector_helper.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/system/helpers/inflector_helper.php b/system/helpers/inflector_helper.php
index 72615671c..647d840e4 100644
--- a/system/helpers/inflector_helper.php
+++ b/system/helpers/inflector_helper.php
@@ -45,7 +45,7 @@ if ( ! function_exists('singular'))
* Takes a plural word and makes it singular
*
* @param string
- * @return str
+ * @return string
*/
function singular($str)
{
@@ -110,7 +110,7 @@ if ( ! function_exists('plural'))
*
* @param string
* @param bool
- * @return str
+ * @return string
*/
function plural($str, $force = FALSE)
{
@@ -166,7 +166,7 @@ if ( ! function_exists('camelize'))
* Takes multiple words separated by spaces or underscores and camelizes them
*
* @param string
- * @return str
+ * @return string
*/
function camelize($str)
{
@@ -184,7 +184,7 @@ if ( ! function_exists('underscore'))
* Takes multiple words separated by spaces and underscores them
*
* @param string
- * @return str
+ * @return string
*/
function underscore($str)
{
@@ -203,7 +203,7 @@ if ( ! function_exists('humanize'))
*
* @param string $str
* @param string $separator
- * @return str
+ * @return string
*/
function humanize($str, $separator = '_')
{