From e093e1a1e7bb430b4c25a81e38dffce5ce0adf19 Mon Sep 17 00:00:00 2001
From: eeminionn <109454414+eeminionn@users.noreply.github.com>
Date: Sat, 1 Aug 2026 15:32:26 +0000
Subject: [PATCH] fix: address issue #2948
---
src/parallel-rustc.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/parallel-rustc.md b/src/parallel-rustc.md
index c4e0663068..23d015c156 100644
--- a/src/parallel-rustc.md
+++ b/src/parallel-rustc.md
@@ -1,14 +1,14 @@
# Parallel compilation
-As of November 2024,
+As of August 2026,
the parallel front-end is undergoing significant changes,
so this page contains quite a bit of outdated information.
Tracking issue:
-As of November 2024, most of the rust compiler is now
+As of August 2026, most of the rust compiler is now
parallelized.
- The codegen part is executed concurrently by default.
@@ -111,7 +111,7 @@ when `parallel-compiler` is true.
| **ModuleItems::par_foreign_items**(&self, f: impl Fn(ForeignItemId)) | run `f` on all foreign items in the module | rustc_middle::hir |
There are a lot of loops in the compiler which can possibly be parallelized
-using these functions. As of August 2022, scenarios where
+using these functions. As of August 2026, scenarios where
the parallel iterator function has been used are as follows:
| caller | scenario | callee |
@@ -164,7 +164,7 @@ See [this open feature tracking issue][tracking].
## Rustdoc
-As of November 2022, there are still a number of steps to
+As of August 2026, there are still a number of steps to
complete before `rustdoc` rendering can be made parallel (see a open discussion
of [parallel `rustdoc`][parallel-rustdoc]).