File tree 1 file changed +2
-2
lines changed
crates/bindings-csharp/BSATN.Runtime/BSATN
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ public AlgebraicType GetAlgebraicType(ITypeRegistrar registrar) =>
407
407
408
408
public Element [ ] Read ( BinaryReader reader )
409
409
{
410
- // Don't use IEnumerable here: save an allocation and pre-allocate the output.
410
+ // Don't use Enumerable here: save an allocation and pre-allocate the output.
411
411
var count = reader . ReadInt32 ( ) ;
412
412
var result = new Element [ count ] ;
413
413
for ( var i = 0 ; i < count ; i ++ )
@@ -461,7 +461,7 @@ public AlgebraicType GetAlgebraicType(ITypeRegistrar registrar) =>
461
461
462
462
public List < Element > Read ( BinaryReader reader )
463
463
{
464
- // Don't use IEnumerable here: save an allocation and pre-allocate the output.
464
+ // Don't use Enumerable here: save an allocation and pre-allocate the output.
465
465
var count = reader . ReadInt32 ( ) ;
466
466
var result = new List < Element > ( count ) ;
467
467
for ( var i = 0 ; i < count ; i ++ )
You can’t perform that action at this time.
0 commit comments