Skip to content

Commit 2cf8f73

Browse files
committed
chore: fix typos
1 parent 7239e29 commit 2cf8f73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ecsact/cli/commands/benchmark.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ constexpr auto OPTIONS = R"(
4343
Path to Ecsact system implementation binaries. If the meta module is not
4444
available on your runtime binary you must specify the system export name
4545
and system ID in this format: `path;export-name,id`. Multiple exports
46-
may be added in semi-colon (;) deliminated list.
46+
may be added in semi-colon (;) delimited list.
4747
NOTE: Only WebAssembly is allowed at this time.
4848
--runtime=<path>
4949
Path to built Ecsact Runtime typically one from ecsact_rtb.
@@ -54,7 +54,7 @@ constexpr auto OPTIONS = R"(
5454
--async=<connect_string>
5555
Connect to an async runtime via <connect_string> instead of executing.
5656
--events=summary
57-
End of benchmark will give a report of how many of each event occured
57+
End of benchmark will give a report of how many of each event occurred
5858
during the benchmark.
5959
--iterations=<count> [default: 10000]
6060
Number of times ecsact_execute_systems is called or in the case of async

ecsact/cli/commands/build.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ constexpr auto USAGE = R"docopt(Ecsact Build Command
3535
<files> Ecsact files used to build Ecsact Runtime
3636
-r --recipe=<name> Name or path to recipe
3737
-o --output=<path> Runtime output path
38-
--temp_dir=<path> Optional temporary directoy to use instead of generated one
38+
--temp_dir=<path> Optional temporary directory to use instead of generated one
3939
--compiler_config=<path> Optionally specify the compiler by name or path
4040
-f --format=<type> The format used to report progress of the build [default: text]
4141
--report_filter=<filter> Filtering out report logs [default: none]

ecsact/cli/commands/build/cc_compiler_config.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum class cc_compiler_type : std::uint32_t {
2121
// Specific compilers
2222

2323
msvc_cl = 0b0000'0001'0000'0010, /// Microsoft cl.exe compiler
24-
clang_cl = 0b0000'0010'0000'0010, /// Clangs msvc compatiblity compiler
24+
clang_cl = 0b0000'0010'0000'0010, /// Clangs msvc compatibility compiler
2525
clang = 0b0000'0011'0000'0001, /// Clang compiler
2626
gcc = 0b0000'0101'0000'0001, /// GNU compiler
2727
emcc = 0b0000'0111'0000'0001, /// Emscripten compiler

0 commit comments

Comments
 (0)