Apply rustfmt to all files

Reviewed By: Imxset21

Differential Revision: D16511369

fbshipit-source-id: aeead9899a6bd50caaa6fe69fdb21160b0befda6
This commit is contained in:
David Tolnay 2019-07-25 21:15:14 -07:00 committed by Facebook Github Bot
parent ddb31755dc
commit aee8989832

View File

@ -14,7 +14,7 @@ use std::env;
trait Command {
// canonical name of the command, should be consistent with the one in argument parser
fn name(&self) -> String;
fn run(&self, &ParsedArgs) -> ();
fn run(&self, _: &ParsedArgs);
fn argparser(&self) -> ArgParseCommand;
}