Skip to content

Commit 5fbf93f

Browse files
committed
Fix compile error introduced by mistake in recent commit.
1 parent 519ddd9 commit 5fbf93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MongoDB.Driver/MongoUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static TimeSpan TimeSpanFromMicroseconds(long microseconds)
5959
/// <returns>The camel cased string.</returns>
6060
public static string ToCamelCase(string value)
6161
{
62-
return value.Length == 0 ? "" : value.Substring(0, 1).ToLower() + value.SubString(1);
62+
return value.Length == 0 ? "" : value.Substring(0, 1).ToLower() + value.Substring(1);
6363
}
6464

6565
// internal methods

0 commit comments

Comments
 (0)