From aadbfebb73c4a277dd3bc7dfd3834e35a30bc343 Mon Sep 17 00:00:00 2001 From: Gary M Date: Sun, 10 Nov 2024 17:20:51 -0800 Subject: [PATCH] fix summary for Entity RemoveTag --- src/ECS/Entity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ECS/Entity.cs b/src/ECS/Entity.cs index 10130f0c..d4c0ef99 100644 --- a/src/ECS/Entity.cs +++ b/src/ECS/Entity.cs @@ -530,7 +530,7 @@ public bool AddTags(in Tags tags) { } throw EntityNullException(); } - /// Add the given from the entity. + /// Remove the given from the entity. public bool RemoveTag() where TTag : struct, ITag { int index = 0; ref var node = ref store.nodes[Id];