From: Ian Jackson Date: Sun, 6 Dec 2020 00:17:28 +0000 (+0000) Subject: formatting X-Git-Tag: otter-0.2.0~257 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9ffec9d599165c44169a747ab5e8ae0ce53d1132;p=otter.git formatting Signed-off-by: Ian Jackson --- 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 }