From 8666504a4f50a55aaf2ec311259dec0b84c32384 Mon Sep 17 00:00:00 2001 From: Tobias Munk Date: Thu, 3 Jul 2014 15:34:34 +0200 Subject: [PATCH] fixed typo [skip ci] --- framework/helpers/BaseInflector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/helpers/BaseInflector.php b/framework/helpers/BaseInflector.php index 48139e9..3d036a3 100644 --- a/framework/helpers/BaseInflector.php +++ b/framework/helpers/BaseInflector.php @@ -326,7 +326,7 @@ class BaseInflector * For example, 'PostTag' will be converted to 'post-tag'. * @param string $name the string to be converted * @param string $separator the character used to concatenate the words in the ID - * @param string $strict where to insert a separator between two consecutive uppercase chars, defaults to false + * @param string $strict whether to insert a separator between two consecutive uppercase chars, defaults to false * @return string the resulting ID */ public static function camel2id($name, $separator = '-', $strict = false)