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.
2 parents 043874b + 9d92138 commit 6cb425dCopy full SHA for 6cb425d
src/LinkDotNet.StringBuilder/ValueStringBuilder.EnsureCapacity.cs
@@ -16,7 +16,7 @@ public ref partial struct ValueStringBuilder
16
[MethodImpl(MethodImplOptions.AggressiveInlining)]
17
public void EnsureCapacity(int newCapacity)
18
{
19
- if (Length >= newCapacity)
+ if (Capacity >= newCapacity)
20
21
return;
22
}
@@ -54,4 +54,4 @@ private static int FindSmallestPowerOf2Above(int minimum)
54
55
return 1 << (int)Math.Ceiling(Math.Log2(minimum));
56
57
-}
+}
0 commit comments