@@ -90,7 +90,7 @@ public override int GetHashCode()
9090 /// </summary>
9191 /// <param name="left">The left <see cref="Entity"/>.</param>
9292 /// <param name="right">The right <see cref="Entity"/>.</param>
93- /// <returns>True if both are equal, otherwhise false.</returns>
93+ /// <returns>True if both are equal, otherwise false.</returns>
9494
9595 public static bool operator == ( Entity left , Entity right )
9696 {
@@ -102,7 +102,7 @@ public override int GetHashCode()
102102 /// </summary>
103103 /// <param name="left">The left <see cref="Entity"/>.</param>
104104 /// <param name="right">The right <see cref="Entity"/>.</param>
105- /// <returns>True if both are unequal, otherwhise false.</returns>
105+ /// <returns>True if both are unequal, otherwise false.</returns>
106106
107107 public static bool operator != ( Entity left , Entity right )
108108 {
@@ -157,7 +157,6 @@ public Entity()
157157 /// </summary>
158158 /// <param name="id">Its unique id.</param>
159159 /// <param name="worldId">Its <see cref="World"/> id.</param>
160-
161160 internal Entity ( int id , int worldId )
162161 {
163162 Id = id ;
@@ -169,7 +168,6 @@ internal Entity(int id, int worldId)
169168 /// </summary>
170169 /// <param name="other">The other <see cref="Entity"/>.</param>
171170 /// <returns>True if equal, false if not.</returns>
172-
173171 public bool Equals ( Entity other )
174172 {
175173 return Id == other . Id && WorldId == other . WorldId ;
@@ -180,7 +178,6 @@ public bool Equals(Entity other)
180178 /// </summary>
181179 /// <param name="obj">The other <see cref="Entity"/> object.</param>
182180 /// <returns>True if equal, false if not.</returns>
183-
184181 public override bool Equals ( object ? obj )
185182 {
186183 return obj is Entity other && Equals ( other ) ;
@@ -192,7 +189,6 @@ public override bool Equals(object? obj)
192189 /// </summary>
193190 /// <param name="other">The other <see cref="Entity"/>.</param>
194191 /// <returns>A int indicating their order.</returns>
195-
196192 public int CompareTo ( Entity other )
197193 {
198194 return WorldId != other . WorldId ? WorldId . CompareTo ( other . WorldId ) : Id . CompareTo ( other . Id ) ;
@@ -202,7 +198,6 @@ public int CompareTo(Entity other)
202198 /// Calculates the hash of this <see cref="Entity"/>.
203199 /// </summary>
204200 /// <returns>Its hash.</returns>
205-
206201 public override int GetHashCode ( )
207202 {
208203 unchecked
@@ -220,20 +215,18 @@ public override int GetHashCode()
220215 /// </summary>
221216 /// <param name="left">The left <see cref="Entity"/>.</param>
222217 /// <param name="right">The right <see cref="Entity"/>.</param>
223- /// <returns>True if equal, otherwhise false.</returns>
224-
218+ /// <returns>True if equal, otherwise false.</returns>
225219 public static bool operator == ( Entity left , Entity right )
226220 {
227221 return left . Equals ( right ) ;
228222 }
229223
230224 /// <summary>
231- /// Checks the <see cref="Entity"/> for unequality with another one.
225+ /// Checks the <see cref="Entity"/> for inequality with another one.
232226 /// </summary>
233227 /// <param name="left">The left <see cref="Entity"/>.</param>
234228 /// <param name="right">The right <see cref="Entity"/>.</param>
235- /// <returns>True if unequal, otherwhise false.</returns>
236-
229+ /// <returns>True if unequal, otherwise false.</returns>
237230 public static bool operator != ( Entity left , Entity right )
238231 {
239232 return ! left . Equals ( right ) ;
@@ -299,7 +292,7 @@ public EntityReference()
299292 /// Checks if the referenced <see cref="Entity"/> is still valid and alife.
300293 /// </summary>
301294 /// <param name="world">The <see cref="Entity"/> <see cref="World"/>..</param>
302- /// <returns>True if its alive, otherwhise false.</returns>
295+ /// <returns>True if its alive, otherwise false.</returns>
303296
304297 public bool IsAlive ( World world )
305298 {
@@ -309,7 +302,7 @@ public bool IsAlive(World world)
309302 /// <summary>
310303 /// Checks if the referenced <see cref="Entity"/> is still valid and alife.
311304 /// </summary>
312- /// <returns>True if its alive, otherwhise false.</returns>
305+ /// <returns>True if its alive, otherwise false.</returns>
313306
314307 public bool IsAlive ( )
315308 {
@@ -363,7 +356,7 @@ public override int GetHashCode()
363356 /// </summary>
364357 /// <param name="left">The left <see cref="EntityReference"/>.</param>
365358 /// <param name="right">The right <see cref="EntityReference"/>.</param>
366- /// <returns>True if equal, otherwhise false.</returns>
359+ /// <returns>True if equal, otherwise false.</returns>
367360
368361 public static bool operator == ( EntityReference left , EntityReference right )
369362 {
@@ -375,7 +368,7 @@ public override int GetHashCode()
375368 /// </summary>
376369 /// <param name="left">The left <see cref="EntityReference"/>.</param>
377370 /// <param name="right">The right <see cref="EntityReference"/>.</param>
378- /// <returns>True if inequal, otherwhise false.</returns>
371+ /// <returns>True if inequal, otherwise false.</returns>
379372
380373 public static bool operator != ( EntityReference left , EntityReference right )
381374 {
0 commit comments