Skip to content

Commit 8ec3473

Browse files
authored
chore: fix typos (#92)
1 parent c4ef016 commit 8ec3473

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## System Views
66

7-
In the simpliest cases an Ecsact system lines up 1:1 with an EnTT view.
7+
In the simplest cases an Ecsact system lines up 1:1 with an EnTT view.
88

99
```ecsact
1010
package example;

ecsact/entt/detail/globals.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "ecsact/entt/detail/system_execution_context.hh"
1010

1111
/**
12-
* A small set of globals exepected to be available the ecsact_rt_entt_codegen
12+
* A small set of globals expected to be available the ecsact_rt_entt_codegen
1313
* generated source.
1414
*/
1515
namespace ecsact::entt::detail::globals {

rt_entt_codegen/shared/ecsact_entt_details.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ auto ecsact_entt_system_details::fill_system_details(
124124
}
125125

126126
for(auto&& [comp_id, _] : caps) {
127-
// Santity check to make sure we've not missing any system comp IDs
127+
// Sanity check to make sure we've not missing any system comp IDs
128128
assert(
129129
out_details.get_comps.contains(comp_id) ||
130130
out_details.exclude_comps.contains(comp_id)

rt_entt_codegen/shared/util.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class method_printer {
154154

155155
assert(
156156
parameters.has_value() &&
157-
"Cannot set parametrs after return type has been set"
157+
"Cannot set parameters after return type has been set"
158158
);
159159
parameters->push_back({param_type, param_name});
160160
}

test/runtime_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ TEST(Core, AssociationEntityCorrectness) {
613613
ecsact::execution_context ctx{cctx};
614614
ASSERT_TRUE(attacker_entities.contains(ctx.entity()));
615615

616-
// Santity check - no exception
616+
// Sanity check - no exception
617617
ctx.other(ctx.get<runtime_test::Attacking>().target);
618618
}
619619
);

0 commit comments

Comments
 (0)