File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/ComputeSharp.SourceGeneration/Helpers Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,19 +81,19 @@ public int Length
8181 get => AsImmutableArray ( ) . Length ;
8282 }
8383
84- /// <sinheritdoc />
84+ /// <inheritdoc />
8585 public bool Equals ( EquatableArray < T > array )
8686 {
8787 return AsSpan ( ) . SequenceEqual ( array . AsSpan ( ) ) ;
8888 }
8989
90- /// <sinheritdoc />
90+ /// <inheritdoc />
9191 public override bool Equals ( object ? obj )
9292 {
9393 return obj is EquatableArray < T > array && Equals ( this , array ) ;
9494 }
9595
96- /// <sinheritdoc />
96+ /// <inheritdoc />
9797 public override unsafe int GetHashCode ( )
9898 {
9999 if ( this . array is not T [ ] array )
@@ -174,13 +174,13 @@ public ImmutableArray<T>.Enumerator GetEnumerator()
174174 return AsImmutableArray ( ) . GetEnumerator ( ) ;
175175 }
176176
177- /// <sinheritdoc />
177+ /// <inheritdoc />
178178 IEnumerator < T > IEnumerable < T > . GetEnumerator ( )
179179 {
180180 return ( ( IEnumerable < T > ) AsImmutableArray ( ) ) . GetEnumerator ( ) ;
181181 }
182182
183- /// <sinheritdoc />
183+ /// <inheritdoc />
184184 IEnumerator IEnumerable . GetEnumerator ( )
185185 {
186186 return ( ( IEnumerable ) AsImmutableArray ( ) ) . GetEnumerator ( ) ;
You can’t perform that action at this time.
0 commit comments