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 you need to fall back to the old behavior you can use a type alias:
typeSomething = Vec<String>;// Not actually used#[derive(StructOpt)]structOpt{#[structopt(long)]fruit:Option<Vec<String>>,// Shouldn't this be `Option<Something>`?}
The text was updated successfully, but these errors were encountered:
From the changelog; issue in comments:
The text was updated successfully, but these errors were encountered: