From 48e34df61a75a4d09e892c7544af0aba53d6430b Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Thu, 4 Jul 2024 22:35:53 -0700 Subject: [PATCH] chore: typos --- tools/bzlws_tool_lib/bzlws_tool_lib.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/bzlws_tool_lib/bzlws_tool_lib.cc b/tools/bzlws_tool_lib/bzlws_tool_lib.cc index a5b13ee..6495ca5 100644 --- a/tools/bzlws_tool_lib/bzlws_tool_lib.cc +++ b/tools/bzlws_tool_lib/bzlws_tool_lib.cc @@ -347,7 +347,7 @@ static void parse_arg if(options.output_path.empty()) { std::cerr - << "[ERROR] --output flag must come before any non-flag arugments" + << "[ERROR] --output flag must come before any non-flag arguments" << std::endl; tool_exit(bzlws_tool_lib::exit_code::invalid_arguments); } @@ -410,7 +410,7 @@ bzlws_tool_lib::options bzlws_tool_lib::parse_args if(i+1 > args.size()-1) { std::cerr << "Argv access out of range at index " << i - << " (improperly formated) " << std::endl; + << " (improperly formatted) " << std::endl; tool_exit(exit_code::invalid_arguments); } @@ -434,7 +434,7 @@ bzlws_tool_lib::options bzlws_tool_lib::parse_args if(!std::getline(param_file_stream, next_line, '\n')) { std::cerr << "Argv access out of range at index " << i - << " (improperly formated) " << std::endl; + << " (improperly formatted) " << std::endl; tool_exit(exit_code::invalid_arguments); } if(next_line.starts_with('\'') && next_line.ends_with('\'')) {