Skip to content

Commit 44a695b

Browse files
Update src/Middleware/OutputCaching/src/OutputCacheEntryFormatter.cs
Co-authored-by: Brennan <[email protected]>
1 parent 5b89a58 commit 44a695b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/OutputCaching/src/OutputCacheEntryFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private static void Serialize(IBufferWriter<byte> output, OutputCacheEntry entry
144144
// For each header value:
145145
// data byte length: 7-bit encoded int
146146
// UTF-8 encoded byte[]
147-
for (int i = 0; i < count; i++)
147+
for (var i = 0; i < count; i++)
148148
{
149149
WriteCommonHeader(ref writer, header.Value[i]);
150150
}

0 commit comments

Comments
 (0)