From 03592a04c8755c50c03726fcc609ec51eb515c5e Mon Sep 17 00:00:00 2001 From: Lin Yihai Date: Tue, 21 Nov 2023 17:11:24 +0800 Subject: [PATCH] typo: rusc -> rustc --- src/cargo/core/compiler/job_queue/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/core/compiler/job_queue/mod.rs b/src/cargo/core/compiler/job_queue/mod.rs index e39fe184dfa..7c4c89e4f37 100644 --- a/src/cargo/core/compiler/job_queue/mod.rs +++ b/src/cargo/core/compiler/job_queue/mod.rs @@ -3,7 +3,7 @@ //! ## Overview //! //! This module implements a job queue. A job here represents a unit of work, -//! which is roughly a rusc invocation, a build script run, or just a no-op. +//! which is roughly a rustc invocation, a build script run, or just a no-op. //! The job queue primarily handles the following things: //! //! * Spawns concurrent jobs. Depending on its [`Freshness`], a job could be