From 9ffec9d599165c44169a747ab5e8ae0ce53d1132 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 6 Dec 2020 00:17:28 +0000 Subject: [PATCH] formatting Signed-off-by: Ian Jackson --- src/bin/otter.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bin/otter.rs b/src/bin/otter.rs index 861eb3af..c71fd813 100644 --- a/src/bin/otter.rs +++ b/src/bin/otter.rs @@ -769,16 +769,15 @@ mod reset_game { fn subargs(sa: &mut Args) -> ArgumentParser { use argparse::*; let mut ap = ArgumentParser::new(); - ap.refer(&mut sa.table_file) - .metavar("TABLE-SPEC[-TOML]") + ap.refer(&mut sa.table_file).metavar("TABLE-SPEC[-TOML]") .add_option(&["--reset-table"],StoreOption, "reset the players and access too"); ap.refer(&mut sa.table_name).required() .add_argument("TABLE-NAME",Store,"table name"); ap.refer(&mut sa.game_file).required() .add_argument("GAME-SPEC[-TOML]",Store, - "game spec (path to .toml file, or found in specs directory if no '/')" - ); + "game spec (path to .toml file, \ + or found in specs directory if no '/')"); ap } -- 2.30.2