File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ constexpr auto OPTIONS = R"(
43
43
Path to Ecsact system implementation binaries. If the meta module is not
44
44
available on your runtime binary you must specify the system export name
45
45
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.
47
47
NOTE: Only WebAssembly is allowed at this time.
48
48
--runtime=<path>
49
49
Path to built Ecsact Runtime typically one from ecsact_rtb.
@@ -54,7 +54,7 @@ constexpr auto OPTIONS = R"(
54
54
--async=<connect_string>
55
55
Connect to an async runtime via <connect_string> instead of executing.
56
56
--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
58
58
during the benchmark.
59
59
--iterations=<count> [default: 10000]
60
60
Number of times ecsact_execute_systems is called or in the case of async
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ constexpr auto USAGE = R"docopt(Ecsact Build Command
35
35
<files> Ecsact files used to build Ecsact Runtime
36
36
-r --recipe=<name> Name or path to recipe
37
37
-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
39
39
--compiler_config=<path> Optionally specify the compiler by name or path
40
40
-f --format=<type> The format used to report progress of the build [default: text]
41
41
--report_filter=<filter> Filtering out report logs [default: none]
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ enum class cc_compiler_type : std::uint32_t {
21
21
// Specific compilers
22
22
23
23
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
25
25
clang = 0b0000'0011'0000'0001 , // / Clang compiler
26
26
gcc = 0b0000'0101'0000'0001 , // / GNU compiler
27
27
emcc = 0b0000'0111'0000'0001 , // / Emscripten compiler
You can’t perform that action at this time.
0 commit comments