-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing XML documentation issues for Microsoft.AspNetCore.Http.Results' methods #44429
Conversation
Thanks for your PR, @xakep139. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
I haven't searched for other similar malformed lists, so there could be other such entries |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @xakep139!
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/backport to release/7.0 |
Hi @brunolins16. It looks like you just commented on a closed PR. The team will most probably miss it. If you'd like to bring something important up to their attention, consider filing a new issue and add enough details to build context. |
Started backporting to release/7.0: https://github.com/dotnet/aspnetcore/actions/runs/3232005282 |
Fixing XML documentation issues for
Microsoft.AspNetCore.Http.Results
' methodsThis PR fixes issues with the docs for
Microsoft.AspNetCore.Http.Results
' methods being incorrectly displayed.Description
All these methods have incorrectly formed lists in their
<summary>
section, thus they are displayed with issues:They all are also incorrectly displayed in https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.results?view=aspnetcore-6.0
This PR fixes all issues by following an official guide for the
<list>
tag of the XML Docs: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/recommended-tags#listFixes #44428