Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion ecsact/entt/detail/globals.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion rt_entt_codegen/shared/ecsact_entt_details.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion rt_entt_codegen/shared/util.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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});
}
Expand Down
2 changes: 1 addition & 1 deletion test/runtime_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<runtime_test::Attacking>().target);
}
);
Expand Down