Update MediaBrowser.Model/Extensions/StringHelper.cs

Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
This commit is contained in:
Bond-009 2020-01-31 18:10:15 +01:00 committed by GitHub
parent 686d1ff9fb
commit 6cd9c84ddf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ namespace MediaBrowser.Model.Extensions
(chars, buf) => (chars, buf) =>
{ {
chars[0] = char.ToUpperInvariant(buf[0]); chars[0] = char.ToUpperInvariant(buf[0]);
for (int i = 1; i<chars.Length; i++) for (int i = 1; i < chars.Length; i++)
{ {
chars[i] = buf[i]; chars[i] = buf[i];
} }