From 0e4af6911a50abd2e72e260aa3961e01346e6513 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 3 Mar 2023 14:31:59 -0700 Subject: [PATCH] Fixes CLI --help typo. --- src/cli/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/main.cpp b/src/cli/main.cpp index 8fdbcf2fb2d..6dcb5ac33df 100644 --- a/src/cli/main.cpp +++ b/src/cli/main.cpp @@ -207,7 +207,7 @@ int main(int argc, char* argv[]) { experimentalApp->add_subcommand("ruby_version", "Returns the Ruby version used by the CLI")->group(versionGroupname)->callback([&rubyEngine]() { rubyEngine->exec("puts RUBY_VERSION"); }); - [[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Ruby version used by the CLI") + [[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Python version used by the CLI") ->group(versionGroupname) ->callback([&pythonEngine]() { pythonEngine->exec("import sys; print(sys.version)"); });