Merge pull request #441 from benaadams/patch-2

Comment cleanup
This commit is contained in:
Chris R 2015-10-15 16:45:24 -07:00
commit 4083c18d1e
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);
}
}
}
}