Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor typos fixed in Entity.cs #243

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Arch/Core/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public override bool Equals(object? obj)
}

/// <summary>
/// Compares this <see cref="Entity"/> instace to another one for sorting and ordering.
/// Compares this <see cref="Entity"/> instance to another one for sorting and ordering.
/// <remarks>Orders them by id. Ascending.</remarks>
/// </summary>
/// <param name="other">The other <see cref="Entity"/>.</param>
Expand Down Expand Up @@ -187,7 +187,7 @@ public override bool Equals(object? obj)
}

/// <summary>
/// Compares this <see cref="Entity"/> instace to another one for sorting and ordering.
/// Compares this <see cref="Entity"/> instance to another one for sorting and ordering.
/// <remarks>Orders them by id and world. Ascending.</remarks>
/// </summary>
/// <param name="other">The other <see cref="Entity"/>.</param>
Expand Down Expand Up @@ -307,7 +307,7 @@ public bool IsAlive(World world)
}
#else
/// <summary>
/// Checks if the referenced <see cref="Entity"/> is still valid and alife.
/// Checks if the referenced <see cref="Entity"/> is still valid and alive.
/// </summary>
/// <returns>True if its alive, otherwhise false.</returns>

Expand Down