Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/Compilers/Core/Portable/Symbols/ISymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ public interface ISymbol : IEquatable<ISymbol>
/// <para>
/// Examples include (this list is not exhaustive):
/// <list type="bullet">
/// <item> the default constructor for a class or struct that is created if one is not provided, </item>
/// <item> the BeginInvoke/Invoke/EndInvoke methods for a delegate, </item>
/// <item> the generated backing field for an auto property or a field-like event, </item>
/// <item> the "this" parameter for non-static methods, </item>
/// <item> the "value" parameter for a property setter, </item>
/// <item> the parameters on indexer accessor methods (not on the indexer itself), </item>
/// <item> methods in anonymous types </item>
/// <item><description>The default constructor for a class or struct that is created if one is not provided.</description></item>
/// <item><description>The BeginInvoke/Invoke/EndInvoke methods for a delegate.</description></item>
/// <item><description>The generated backing field for an auto property or a field-like event.</description></item>
/// <item><description>The "this" parameter for non-static methods.</description></item>
/// <item><description>The "value" parameter for a property setter.</description></item>
/// <item><description>The parameters on indexer accessor methods (not on the indexer itself).</description></item>
/// <item><description>Methods in anonymous types.</description></item>
/// </list>
/// </para>
/// </remarks>
Expand Down Expand Up @@ -264,9 +264,9 @@ ImmutableArray<SymbolDisplayPart> ToMinimalDisplayParts(
/// <para>
/// Examples include:
/// <list type="bullet">
/// <item> Pointer types in VB </item>
/// <item> ByRef return type </item>
/// <item> Required custom modifiers </item>
/// <item><description>Pointer types in VB</description></item>
/// <item><description>ByRef return type</description></item>
/// <item><description>Required custom modifiers</description></item>
/// </list>
/// </para>
///
Expand All @@ -278,12 +278,12 @@ ImmutableArray<SymbolDisplayPart> ToMinimalDisplayParts(
/// <para>
/// This is set for metadata symbols, as follows:
/// <list type="bullet">
/// <item> Type - if a type is unsupported (e.g., a pointer type, etc.) </item>
/// <item> Method - parameter or return type is unsupported </item>
/// <item> Field - type is unsupported </item>
/// <item> Event - type is unsupported </item>
/// <item> Property - type is unsupported </item>
/// <item> Parameter - type is unsupported </item>
/// <item><description>Type - if a type is unsupported (for example, a pointer type)</description></item>
/// <item><description>Method - parameter or return type is unsupported</description></item>
/// <item><description>Field - type is unsupported</description></item>
/// <item><description>Event - type is unsupported</description></item>
/// <item><description>Property - type is unsupported</description></item>
/// <item><description>Parameter - type is unsupported</description></item>
/// </list>
/// </para>
/// </summary>
Expand Down