Upper case first letter

This commit is contained in:
Cam Findlay 2014-12-08 10:42:25 +13:00
parent b239e87fe2
commit f74f35234d
1 changed files with 2 additions and 3 deletions

View File

@ -19,9 +19,8 @@ class DocumentationHelper {
$name = self::trim_sort_number($name);
$name = str_replace(array('-', '_'), ' ', $name);
return ucwords(trim($name));
return ucfirst(trim($name));
}
/**
@ -88,4 +87,4 @@ class DocumentationHelper {
return null;
}
}
}