Skip to content

Commit e0a52ef

Browse files
committed
fix: Format
1 parent bdea9b2 commit e0a52ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.InterpolatedStringHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ public ref struct AppendInterpolatedStringHandler
4242
[MethodImpl(MethodImplOptions.AggressiveInlining)]
4343
public AppendInterpolatedStringHandler(int literalLength, int formattedCount, ValueStringBuilder builder)
4444
{
45-
this.Builder = builder;
45+
Builder = builder;
4646

4747
// A conservative guess for the capacity.
48-
this.Builder.EnsureCapacity(this.Builder.Length + literalLength + (formattedCount * 11));
48+
Builder.EnsureCapacity(Builder.Length + literalLength + (formattedCount * 11));
4949
}
5050

5151
/// <summary>

0 commit comments

Comments
 (0)