Skip to content

Commit 31ba1fc

Browse files
committed
chore: typos
1 parent 69ec891 commit 31ba1fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp_systems_header_codegen/cpp_systems_header_codegen.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ static auto write_context_other_decl(
218218
return;
219219
}
220220

221-
auto avail_indicies_str = comma_delim(
221+
auto avail_indices_str = comma_delim(
222222
std::views::iota(0UL, assoc_ids.size()) |
223223
std::views::transform([](auto i) { return std::to_string(i); })
224224
);
@@ -233,8 +233,8 @@ static auto write_context_other_decl(
233233
"System Execution Context Misuse",
234234
std::format( //
235235
"context.other<>() must be called with an index. Available "
236-
"indicies for this system are {}",
237-
avail_indicies_str
236+
"indices for this system are {}",
237+
avail_indices_str
238238
),
239239
"other_context<Index>"
240240
);

0 commit comments

Comments
 (0)