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
vec.iter()// a lovely comment explaining the code in very detail.map(|x| x.iter())// the answer to life, the universe and everything could be here.flatten();
This is especially annoying when running --fix, clippy will just transform this vec.iter().flat_map(|x| x.iter());
and eat all the comments.