Skip to content

Commit c452b50

Browse files
authored
Merge pull request #30 from GaryMcWhorter/bugfix/entity-remove-tag-summary
fix summary for Entity RemoveTag
2 parents aaea9d4 + aadbfeb commit c452b50

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
@@ -531,7 +531,7 @@ public bool AddTags(in Tags tags) {
531531
}
532532
throw EntityNullException();
533533
}
534-
/// <summary>Add the given <typeparamref name="TTag"/> from the entity.</summary>
534+
/// <summary>Remove the given <typeparamref name="TTag"/> from the entity.</summary>
535535
public bool RemoveTag<TTag>() where TTag : struct, ITag {
536536
int index = 0;
537537
ref var node = ref store.nodes[Id];

0 commit comments

Comments
 (0)