File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/LinkDotNet.StringBuilder Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ public ref partial struct ValueStringBuilder
1616 /// </summary>
1717 /// <param name="value">Formattable span to add.</param>
1818 /// <param name="format">Optional formatter. If not provided the default of the given instance is taken.</param>
19- /// <param name="bufferSize">Size of the buffer allocated on the stack.</param>
19+ /// <param name="bufferSize">Size of the buffer allocated. If you have a custom type that implements <see cref="ISpanFormattable"/> that
20+ /// requires more space than the default (36 characters), adjust the value.</param>
2021 /// <typeparam name="T">Any <see cref="ISpanFormattable"/>.</typeparam>
2122 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
2223 public void Append < T > ( T value , ReadOnlySpan < char > format = default , int bufferSize = 36 )
You can’t perform that action at this time.
0 commit comments