diff options
| author | Chris Denton <christophersdenton@gmail.com> | 2025-04-13 03:07:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 03:07:09 +0000 |
| commit | 6b26d3c37c3c907d860881c5be642e0309c24800 (patch) | |
| tree | 851073fe36869d317c1e123cec4e7cd354380765 | |
| parent | c3027182d19b4b3781eaf28b6e342ccd1f54a9e6 (diff) | |
| parent | 32dd3831f56973881ad2a47d4b4002d18de26c5f (diff) | |
| download | rust-6b26d3c37c3c907d860881c5be642e0309c24800.tar.gz rust-6b26d3c37c3c907d860881c5be642e0309c24800.zip | |
Rollup merge of #139709 - tshepang:patch-5, r=Kobzol
bootstrap: fix typo in doc string
| -rw-r--r-- | src/bootstrap/src/core/download.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/download.rs b/src/bootstrap/src/core/download.rs index 5bd947f6e63..4e4b948a8fd 100644 --- a/src/bootstrap/src/core/download.rs +++ b/src/bootstrap/src/core/download.rs @@ -417,7 +417,7 @@ enum DownloadSource { Dist, } -/// Functions that are only ever called once, but named for clarify and to avoid thousand-line functions. +/// Functions that are only ever called once, but named for clarity and to avoid thousand-line functions. impl Config { pub(crate) fn download_clippy(&self) -> PathBuf { self.verbose(|| println!("downloading stage0 clippy artifacts")); |
