From f534ff145e72972780804d7f4405a8549cb82f8e Mon Sep 17 00:00:00 2001
From: cosmonaut <evan@moonside.games>
Date: Thu, 9 Feb 2023 15:15:41 -0800
Subject: [PATCH] Fix InRelationSingleton error message

---
 src/RelationStorage.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/RelationStorage.cs b/src/RelationStorage.cs
index a069768..eec556f 100644
--- a/src/RelationStorage.cs
+++ b/src/RelationStorage.cs
@@ -128,7 +128,7 @@ namespace MoonTools.ECS
 #if DEBUG
 			if (!inRelations.ContainsKey(entityID) || inRelations[entityID].Count == 0)
 			{
-				throw new KeyNotFoundException("No out relations to this entity!");
+				throw new KeyNotFoundException("No in relations to this entity!");
 			}
 #endif