浏览代码

remove the link in comment and unused error variant

Dangerise 1 年之前
父节点
当前提交
c89a4b37dc
共有 2 个文件被更改,包括 2 次插入5 次删除
  1. 2 2
      packages/cli/src/cli/autoformat.rs
  2. 0 3
      packages/cli/src/error.rs

+ 2 - 2
packages/cli/src/cli/autoformat.rs

@@ -147,9 +147,9 @@ fn format_file(path: impl AsRef<Path>, indent: IndentOptions, do_rustfmt: bool)
 
 /// Read every .rs file accessible when considering the .gitignore and try to format it
 ///
-/// Runs using Tokio for multithreading, so it should be really really fast
+/// Runs using rayon for multithreading, so it should be really really fast
 ///
-/// Doesnhttps://www.rustwiki.org.cn/zh-CN/std/'t do mod-descending, so it will still try to format unreachable files. TODO.
+/// Doesn't do mod-descending, so it will still try to format unreachable files. TODO.
 async fn autoformat_project(
     check: bool,
     split_line_attributes: bool,

+ 0 - 3
packages/cli/src/error.rs

@@ -46,9 +46,6 @@ pub enum Error {
 
     #[error(transparent)]
     Other(#[from] anyhow::Error),
-
-    #[error("Child process exited with {0}")]
-    ExitCodeNotZero(i32),
 }
 
 impl From<&str> for Error {