Skip to content

Commit

Permalink
Fix bad whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six committed Feb 8, 2015
1 parent 55cbcd5 commit f79325f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utility/Inflector.php
Expand Up @@ -657,7 +657,7 @@ public static function normalize($string, $replacement = '_')
$result = static::_cache($cacheKey, $string);

if ($result === false) {
$result = strtolower(preg_replace('/(?<=\\w)([A-Z])/', $replacement .'\\1', $string));
$result = strtolower(preg_replace('/(?<=\\w)([A-Z])/', $replacement . '\\1', $string));
static::_cache($cacheKey, $string, $result);
}

Expand Down

0 comments on commit f79325f

Please sign in to comment.