Skip to content

Commit d986f2e

Browse files
committed
Fix comment
1 parent 9ba027e commit d986f2e

File tree

1 file changed

+2
-2
lines changed
  • crates/bindings-csharp/BSATN.Runtime/BSATN

1 file changed

+2
-2
lines changed

crates/bindings-csharp/BSATN.Runtime/BSATN/Runtime.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public AlgebraicType GetAlgebraicType(ITypeRegistrar registrar) =>
407407

408408
public Element[] Read(BinaryReader reader)
409409
{
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.
411411
var count = reader.ReadInt32();
412412
var result = new Element[count];
413413
for (var i = 0; i < count; i++)
@@ -461,7 +461,7 @@ public AlgebraicType GetAlgebraicType(ITypeRegistrar registrar) =>
461461

462462
public List<Element> Read(BinaryReader reader)
463463
{
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.
465465
var count = reader.ReadInt32();
466466
var result = new List<Element>(count);
467467
for (var i = 0; i < count; i++)

0 commit comments

Comments
 (0)