Skip to content

Commit 46250b3

Browse files
committed
Merge branch 'marc/ocbin' of https://github.com/dotnet/aspnetcore into marc/ocbin
2 parents d8fc267 + 44a695b commit 46250b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/OutputCaching/src/OutputCacheEntryFormatter.cs

+1-1
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)