Skip to content

Commit 123c85d

Browse files
committed
fix: Code consistency
1 parent ffc0a45 commit 123c85d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.Append.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public void AppendLine(scoped ReadOnlySpan<char> str)
144144
[MethodImpl(MethodImplOptions.AggressiveInlining)]
145145
public Span<char> AppendSpan(int length)
146146
{
147-
int origPos = bufferPosition;
147+
var origPos = bufferPosition;
148148
if (origPos > buffer.Length - length)
149149
{
150150
Grow(length);

0 commit comments

Comments
 (0)