rust-sokoban icon indicating copy to clipboard operation
rust-sokoban copied to clipboard

Use compact imports

Open iolivia opened this issue 5 years ago • 0 comments

Example:

use specs::NullStorage;
use specs::WriteStorage;

should be

use specs::{NullStorage, WriteStorage};

Might make sense to do at the same time as #79 to avoid having to change the line numbers twice. Or wait for anchors to be merged (#75 #46)

iolivia avatar Aug 15 '20 15:08 iolivia