Skip to content

Commit aadbfeb

Browse files
committed
fix summary for Entity RemoveTag
1 parent ef8b680 commit aadbfeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ECS/Entity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ public bool AddTags(in Tags tags) {
530530
}
531531
throw EntityNullException();
532532
}
533-
/// <summary>Add the given <typeparamref name="TTag"/> from the entity.</summary>
533+
/// <summary>Remove the given <typeparamref name="TTag"/> from the entity.</summary>
534534
public bool RemoveTag<TTag>() where TTag : struct, ITag {
535535
int index = 0;
536536
ref var node = ref store.nodes[Id];

0 commit comments

Comments
 (0)