Comment sp

This commit is contained in:
Ben Adams 2015-10-16 00:40:37 +01:00
parent 7d62a188e1
commit 3276115877
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ namespace Microsoft.AspNet.Http.Features.Internal
{
public class HttpRequestIdentifierFeature : IHttpRequestIdentifierFeature
{
// Base64 encoding - but in ascii sort order for easy text based sorting
// Base32 encoding - in ascii sort order for easy text based sorting
private static readonly string _encode32Chars = "0123456789ABCDEFGHIJKLMNOPQRSTUV";
// Seed the _requestId for this application instance with
// the number of 100-nanosecond intervals that have elapsed since 12:00:00 midnight, January 1, 0001
@ -61,4 +61,4 @@ namespace Microsoft.AspNet.Http.Features.Internal
return new string(charBuffer, 0, 13);
}
}
}
}