Przeglądaj źródła

refactor(clippy): clippy::semicolon_if_nothing_returned

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 lat temu
rodzic
commit
91cb53facf
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/options/parser.rs

+ 1 - 1
src/options/parser.rs

@@ -316,7 +316,7 @@ impl Args {
 
             // Otherwise, it’s a free string, usually a file name.
             else {
-                frees.push(arg)
+                frees.push(arg);
             }
         }