The documentation is a little unclear when it says: "The lowercased name of the class (and namespace) being instantiated".
What it actually means is that the argument can be in whatever case you want, but it will be converted to lowercase before PHP starts looking for files. This is probably because in PHP, class names are case-insensitive (as well as function names and namespaces) so it needs to convert to some canonical format.