chiark / gitweb /
formatting
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 6 Dec 2020 00:17:28 +0000 (00:17 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 6 Dec 2020 00:17:28 +0000 (00:17 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
src/bin/otter.rs

index 861eb3af55c69e1c569a93bad79e037802432422..c71fd8138a31d1a727a7b6ced55ec0570f7cac7a 100644 (file)
@@ -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
   }