Răsfoiți Sursa

refactor(clippy): clippy::semicolon_if_nothing_returned

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 ani în urmă
părinte
comite
91cb53facf
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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);
             }
         }