documentation and cleanup

This commit is contained in:
jadebenn
2024-12-17 00:25:29 -06:00
parent 179f0cf32d
commit eab57e4022
3 changed files with 17 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ TEST(ECSTest, WorldScope) {
ASSERT_NE(cPtr, nullptr);
}
// Attempting to access this component now that the world has gone
// out of scope should return nullptr
// Attempting to access this component should return nullptr
// now that the world has gone out of scope
ASSERT_EQ(e->GetComponent<TestComponent>(), nullptr);
}