summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthew Hall <hallmatthew314@gmail.com>2022-09-08 23:01:29 +1200
committerMatthew Hall <hallmatthew314@gmail.com>2022-09-08 23:01:29 +1200
commitc79e7b8e1838fcdce63489f48b98f82026adf63c (patch)
tree68fda51af73deb4871caeb9601f0feb45d92b121 /src
parented741d3235841cd373dfa1cc5ddcf61806d3e5b7 (diff)
fix an typo
Diffstat (limited to 'src')
-rw-r--r--src/flint.cr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flint.cr b/src/flint.cr
index 02fdd85..d6de3f4 100644
--- a/src/flint.cr
+++ b/src/flint.cr
@@ -63,7 +63,7 @@ module Flint
parser.on("-m CELLS", "--memory-size=CELLS", "specify the number of memory cells available, defaults vary depending on language") do |_cells|
language_options[:memory_size] = _cells
end
- parser.on("--supported-languages", "print a list of languages supported by flinti and exit") do
+ parser.on("--supported-languages", "print a list of languages supported by flint and exit") do
puts "Languages supported by flint (not guaranteed to be fully implemented):"
Language.names.each { |name| puts name }
exit(0)