From 9dc606684c4dd6bbf5ee7d268a3899d4641c6cc2 Mon Sep 17 00:00:00 2001 From: "Alexandre D. Roberge" <4276275+AldeRoberge@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:16:54 -0500 Subject: [PATCH] Minor typos fixed in Entity.cs (#243) Typos like 'Alife' instead of 'alive' --- src/Arch/Core/Entity.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Arch/Core/Entity.cs b/src/Arch/Core/Entity.cs index 0fef730..5799981 100644 --- a/src/Arch/Core/Entity.cs +++ b/src/Arch/Core/Entity.cs @@ -58,7 +58,7 @@ public override bool Equals(object? obj) } /// - /// Compares this instace to another one for sorting and ordering. + /// Compares this instance to another one for sorting and ordering. /// Orders them by id. Ascending. /// /// The other . @@ -187,7 +187,7 @@ public override bool Equals(object? obj) } /// - /// Compares this instace to another one for sorting and ordering. + /// Compares this instance to another one for sorting and ordering. /// Orders them by id and world. Ascending. /// /// The other . @@ -307,7 +307,7 @@ public bool IsAlive(World world) } #else /// - /// Checks if the referenced is still valid and alife. + /// Checks if the referenced is still valid and alive. /// /// True if its alive, otherwhise false.