Typo while correcting for feedback
This commit is contained in:
parent
19e943e6b9
commit
a24ae8bd16
|
|
@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.ResponseCaching.Internal
|
|||
{
|
||||
internal static StringBuilder AppendUpperInvariant(this StringBuilder builder, string value)
|
||||
{
|
||||
if (string.IsNullOrEmpty(value))
|
||||
if (!string.IsNullOrEmpty(value))
|
||||
{
|
||||
builder.EnsureCapacity(builder.Length + value.Length);
|
||||
for (var i = 0; i < value.Length; i++)
|
||||
|
|
|
|||
Loading…
Reference in New Issue