dotnet/dotnet-api-docs

Code fix in doc

Opened this issue · 1 comments

In this page: https://learn.microsoft.com/en-us/dotnet/api/system.security.cryptography.x509certificates.x509chain?view=net-8.0

This line:
if (ch.ChainStatus.Length > 1)

Should be:
if (ch.ChainStatus.Length >= 1)

Tagging subscribers to this area: @dotnet/area-system-security, @vcsjones