Skip to content

Commit

Permalink
Note, not TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrw committed Oct 16, 2024
1 parent ce09763 commit 11b1ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Arch/Core/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ public void DuplicateN(Entity sourceEntity, int n, Span<Entity> outputSpan)
Debug.Assert(IsAlive(sourceEntity));
Debug.Assert(n > 0);
Debug.Assert(n <= outputSpan.Length);
// TODO: this could be optimised by getting the chunks and using
// Note: this could be optimised by getting the chunks and using
// Array.Fill(), assuming we could guarantee writing to the end of the
// chunk.
for (int i = 0; i < n; ++i)
Expand Down

0 comments on commit 11b1ddf

Please sign in to comment.