瀏覽代碼

refactor(clippy): clippy::semicolon_if_nothing_returned

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 年之前
父節點
當前提交
91cb53facf
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);
             }
         }