Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 26, 2024
1 parent 67f8bd5 commit b21b18b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitpicker.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{
"user": "p-ranav",
"repo": "argparse",
"branch": "f0759fd982bb4a88785094626ea522cb3a84ec84",
"branch": "eab1d75e49970857eba1fdef5afb68befa2fa16f",
"root": "include/argparse",
"file": [
"argparse.hpp"
Expand Down
4 changes: 2 additions & 2 deletions argparse.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1831,9 +1831,9 @@ class ArgumentParser {
for (Argument *arg : group.m_elements) {
if (i + 1 == size) {
// last
argument_names += "'" + arg->get_usage_full() + "' ";
argument_names += std::string("'") + arg->get_usage_full() + std::string("' ");
} else {
argument_names += "'" + arg->get_usage_full() + "' or ";
argument_names += std::string("'") + arg->get_usage_full() + std::string("' or ");
}
i += 1;
}
Expand Down

0 comments on commit b21b18b

Please sign in to comment.