diff --git a/README.md b/README.md index 7d18e89..79b826b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## System Views -In the simpliest cases an Ecsact system lines up 1:1 with an EnTT view. +In the simplest cases an Ecsact system lines up 1:1 with an EnTT view. ```ecsact package example; diff --git a/ecsact/entt/detail/globals.hh b/ecsact/entt/detail/globals.hh index ce679f1..1268fed 100644 --- a/ecsact/entt/detail/globals.hh +++ b/ecsact/entt/detail/globals.hh @@ -9,7 +9,7 @@ #include "ecsact/entt/detail/system_execution_context.hh" /** - * A small set of globals exepected to be available the ecsact_rt_entt_codegen + * A small set of globals expected to be available the ecsact_rt_entt_codegen * generated source. */ namespace ecsact::entt::detail::globals { diff --git a/rt_entt_codegen/shared/ecsact_entt_details.cc b/rt_entt_codegen/shared/ecsact_entt_details.cc index 76c40f5..57a0d7a 100644 --- a/rt_entt_codegen/shared/ecsact_entt_details.cc +++ b/rt_entt_codegen/shared/ecsact_entt_details.cc @@ -124,7 +124,7 @@ auto ecsact_entt_system_details::fill_system_details( } for(auto&& [comp_id, _] : caps) { - // Santity check to make sure we've not missing any system comp IDs + // Sanity check to make sure we've not missing any system comp IDs assert( out_details.get_comps.contains(comp_id) || out_details.exclude_comps.contains(comp_id) diff --git a/rt_entt_codegen/shared/util.hh b/rt_entt_codegen/shared/util.hh index 8f70450..06578ed 100644 --- a/rt_entt_codegen/shared/util.hh +++ b/rt_entt_codegen/shared/util.hh @@ -154,7 +154,7 @@ class method_printer { assert( parameters.has_value() && - "Cannot set parametrs after return type has been set" + "Cannot set parameters after return type has been set" ); parameters->push_back({param_type, param_name}); } diff --git a/test/runtime_test.cc b/test/runtime_test.cc index c34bb18..7b55df9 100644 --- a/test/runtime_test.cc +++ b/test/runtime_test.cc @@ -613,7 +613,7 @@ TEST(Core, AssociationEntityCorrectness) { ecsact::execution_context ctx{cctx}; ASSERT_TRUE(attacker_entities.contains(ctx.entity())); - // Santity check - no exception + // Sanity check - no exception ctx.other(ctx.get().target); } );