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
although there can be many usage strings for a given command, they are all required to route to the same run function. for commands with a large number of usages, it can be confusing to separate out all the cases, which are in practice going to be handled by an if statement regardless, even if they have some shared logic. this can be handled better. try designing it so that each usage can route to its own function
The text was updated successfully, but these errors were encountered:
although there can be many usage strings for a given command, they are all required to route to the same
run
function. for commands with a large number of usages, it can be confusing to separate out all the cases, which are in practice going to be handled by anif
statement regardless, even if they have some shared logic. this can be handled better. try designing it so that each usage can route to its own functionThe text was updated successfully, but these errors were encountered: