@@ -133,9 +133,6 @@ bool IdDependsOnImpl(ITypeSymbol? type)
133133
134134 /// <summary>
135135 /// Constructs a unique string for this type symbol.
136- ///
137- /// The supplied action <paramref name="subTermAction"/> is applied to the
138- /// syntactic sub terms of this type (if any).
139136 /// </summary>
140137 /// <param name="cx">The extraction context.</param>
141138 /// <param name="trapFile">The trap builder used to store the result.</param>
@@ -495,31 +492,31 @@ public static bool IsReallyUnbound(this INamedTypeSymbol type) =>
495492
496493 /// <summary>
497494 /// Holds if this type is of the form <code>int?</code> or
498- /// <code>System.Nullable< int> </code>.
495+ /// <code>System.Nullable< int> </code>.
499496 /// </summary>
500497 public static bool IsBoundNullable ( this ITypeSymbol type ) =>
501498 type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundNullable ( ) ;
502499
503500 /// <summary>
504- /// Holds if this type is <code>System.Nullable<T> </code>.
501+ /// Holds if this type is <code>System.Nullable<T> </code>.
505502 /// </summary>
506503 public static bool IsUnboundNullable ( this ITypeSymbol type ) =>
507504 type . SpecialType == SpecialType . System_Nullable_T ;
508505
509506 /// <summary>
510- /// Holds if this type is <code>System.Span<T> </code>.
507+ /// Holds if this type is <code>System.Span<T> </code>.
511508 /// </summary>
512509 public static bool IsUnboundSpan ( this ITypeSymbol type ) =>
513510 type . ToString ( ) == "System.Span<T>" ;
514511
515512 /// <summary>
516- /// Holds if this type is of the form <code>System.Span< byte> </code>.
513+ /// Holds if this type is of the form <code>System.Span< byte> </code>.
517514 /// </summary>
518515 public static bool IsBoundSpan ( this ITypeSymbol type ) =>
519516 type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundSpan ( ) ;
520517
521518 /// <summary>
522- /// Holds if this type is <code>System.ReadOnlySpan<T> </code>.
519+ /// Holds if this type is <code>System.ReadOnlySpan<T> </code>.
523520 /// </summary>
524521 public static bool IsUnboundReadOnlySpan ( this ITypeSymbol type ) =>
525522 type . ToString ( ) == "System.ReadOnlySpan<T>" ;
@@ -536,7 +533,7 @@ attribute.AttributeClass is INamedTypeSymbol nt &&
536533 }
537534
538535 /// <summary>
539- /// Holds if this type is of the form <code>System.ReadOnlySpan< byte> </code>.
536+ /// Holds if this type is of the form <code>System.ReadOnlySpan< byte> </code>.
540537 /// </summary>
541538 public static bool IsBoundReadOnlySpan ( this ITypeSymbol type ) =>
542539 type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundReadOnlySpan ( ) ;
0 commit comments