You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the program is used as ./my_prog --param foo --param bar, when param is a Parameter and not a Repeat field, the clap parser fails fast because we tell it to only expect this parameter to appear once.
Instead, these two parameter types should look the same from clap's point of view, so that if it appears multiple times, we can report other missing or invalid arguments as well.
The text was updated successfully, but these errors were encountered:
If the program is used as
./my_prog --param foo --param bar
, whenparam
is aParameter
and not aRepeat
field, the clap parser fails fast because we tell it to only expect this parameter to appear once.Instead, these two parameter types should look the same from
clap
's point of view, so that if it appears multiple times, we can report other missing or invalid arguments as well.The text was updated successfully, but these errors were encountered: