We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 519ddd9 commit 5fbf93fCopy full SHA for 5fbf93f
src/MongoDB.Driver/MongoUtils.cs
@@ -59,7 +59,7 @@ public static TimeSpan TimeSpanFromMicroseconds(long microseconds)
59
/// <returns>The camel cased string.</returns>
60
public static string ToCamelCase(string value)
61
{
62
- return value.Length == 0 ? "" : value.Substring(0, 1).ToLower() + value.SubString(1);
+ return value.Length == 0 ? "" : value.Substring(0, 1).ToLower() + value.Substring(1);
63
}
64
65
// internal methods
0 commit comments