Skip to content

Commit 3af8817

Browse files
committed
typo
1 parent 1a04407 commit 3af8817

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ECS/Index/Internal/StoreIndex.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ private static AbstractComponentIndex[] CreateStoreIndexMap()
5757
}
5858

5959
internal static void ThrowIndexedComponentValueNotFound() {
60-
throw new InvalidOperationException("Indexed component value not found. Reason: indexed values mus not be changed. See: https://friflo.gitbook.io/friflo.engine.ecs/documentation/component-index#indexed-components");
60+
throw new InvalidOperationException("Indexed component value not found. Reason: indexed values MUST NOT be changed. See: https://friflo.gitbook.io/friflo.engine.ecs/documentation/component-index#indexed-components");
6161
}
6262
}

src/Tests/ECS/Index/Test_Index_Delete.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public static void TestDeleteEntity() {
191191
var e = Throws<InvalidOperationException>(() => {
192192
child.DeleteEntity();
193193
});
194-
AreEqual("Indexed component value not found. Reason: indexed values mus not be changed. See: https://friflo.gitbook.io/friflo.engine.ecs/documentation/component-index#indexed-components", e!.Message);
194+
AreEqual("Indexed component value not found. Reason: indexed values MUST NOT be changed. See: https://friflo.gitbook.io/friflo.engine.ecs/documentation/component-index#indexed-components", e!.Message);
195195
}
196196
}
197197

0 commit comments

Comments
 (0)