We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ec891 commit 31ba1fcCopy full SHA for 31ba1fc
cpp_systems_header_codegen/cpp_systems_header_codegen.cc
@@ -218,7 +218,7 @@ static auto write_context_other_decl(
218
return;
219
}
220
221
- auto avail_indicies_str = comma_delim(
+ auto avail_indices_str = comma_delim(
222
std::views::iota(0UL, assoc_ids.size()) |
223
std::views::transform([](auto i) { return std::to_string(i); })
224
);
@@ -233,8 +233,8 @@ static auto write_context_other_decl(
233
"System Execution Context Misuse",
234
std::format( //
235
"context.other<>() must be called with an index. Available "
236
- "indicies for this system are {}",
237
- avail_indicies_str
+ "indices for this system are {}",
+ avail_indices_str
238
),
239
"other_context<Index>"
240
0 commit comments