Skip to content

Commit 11b1ddf

Browse files
committed
Note, not TODO
1 parent ce09763 commit 11b1ddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Arch/Core/World.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ public void DuplicateN(Entity sourceEntity, int n, Span<Entity> outputSpan)
625625
Debug.Assert(IsAlive(sourceEntity));
626626
Debug.Assert(n > 0);
627627
Debug.Assert(n <= outputSpan.Length);
628-
// TODO: this could be optimised by getting the chunks and using
628+
// Note: this could be optimised by getting the chunks and using
629629
// Array.Fill(), assuming we could guarantee writing to the end of the
630630
// chunk.
631631
for (int i = 0; i < n; ++i)

0 commit comments

Comments
 (0)