Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
friflo committed Feb 13, 2025
1 parent 75808fc commit 969d671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tests/ECS/Arch/Test_StructuralChange_Docs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static void QueryException()
entity.Add(new EntityName("test"));
});

// Solution: Ussing a CommandBuffer
// Solution: Using a CommandBuffer
var buffer = store.GetCommandBuffer();
query.ForEachEntity((ref Position position, Entity entity) => {
buffer.AddComponent(entity.Id, new EntityName("test"));
Expand Down Expand Up @@ -68,7 +68,7 @@ protected override void OnUpdate() {
Query.ForEachEntity((ref Position component1, Entity entity) => {
buffer.AddComponent(entity.Id, new EntityName("test"));
});
// change made via CommandBuffer are applied by parent group
// changes made via CommandBuffer are applied by parent group
}
}

Expand Down

0 comments on commit 969d671

Please sign in to comment.