-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Revise usage of <code>
tag in IOperation
docs
#74719
Conversation
@@ -2975,8 +2975,8 @@ public interface IRecursivePatternOperation : IPatternOperation | |||
/// </summary> | |||
ITypeSymbol MatchedType { get; } | |||
/// <summary> | |||
/// The symbol, if any, used for the fetching values for subpatterns. This is either a <code>Deconstruct</code> | |||
/// method, the type <code>System.Runtime.CompilerServices.ITuple</code>, or null (for example, in |
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.
should this just be a cref?
should the null be a langword?
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.
@dotnet/roslyn-compiler for a second review.
Can someone restart failed CI pipelines please? Or just straight up merge, there are no code changes anyway |
Noticed, that in all places in
IOperation
doc<code>
tag was used incorrectly. In many cases<see langword...
should be used instead. In several places inline code (<c>
) looks a lot betterExample:
Before:
After: