Merge pull request #2703 from uhoreg/patch-1

Add missing brackets to call to toUpperCase
This commit is contained in:
Matthew Hodgson 2016-12-07 09:24:11 +00:00 committed by GitHub
commit f6957aa367

View file

@ -52,7 +52,7 @@ function platformFriendlyName() {
// Sorry, Linux users: you get lumped into here,
// but only because Linux's capitalisation is
// normal. We do care about you.
return window.process.platform[0].toUpperCase + window.process.platform.slice(1);
return window.process.platform[0].toUpperCase() + window.process.platform.slice(1);
}
}