about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYusuke Abe <moonset20@gmail.com>2021-10-12 08:52:21 +0900
committerGitHub <noreply@github.com>2021-10-12 08:52:21 +0900
commit0ed4e95a01b20157dee63ab7a885b12ade8fdb4f (patch)
tree2fa6ae605bb1f009a75df5f3bc20d9455c70e814 /src/doc/rustc-dev-guide
parentf4708b660ce4ad989f2c36daa6dca997b9d0d253 (diff)
downloadrust-0ed4e95a01b20157dee63ab7a885b12ade8fdb4f.tar.gz
rust-0ed4e95a01b20157dee63ab7a885b12ade8fdb4f.zip
Update some docs from 2021-10 date triage (#1230)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/backend/updating-llvm.md2
-rw-r--r--src/doc/rustc-dev-guide/src/borrow_check/region_inference/member_constraints.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/backend/updating-llvm.md b/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
index 9deff62dd6f..1a6fa033a9a 100644
--- a/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
+++ b/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
@@ -67,7 +67,7 @@ Example PRs look like:
 ## Feature updates
 
 > Note that this information is as of the time of this writing <!-- date:
-2021-04 --> (April 2021). The process for updating LLVM changes with
+2021-10 --> (October 2021). The process for updating LLVM changes with
 practically all LLVM updates, so this may be out of date!
 
 Unlike bugfixes, updating to pick up a new feature of LLVM typically requires a
diff --git a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/member_constraints.md b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/member_constraints.md
index dfc4327e501..c7c107e1ed9 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/member_constraints.md
+++ b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/member_constraints.md
@@ -94,7 +94,7 @@ member constraints come in.
 ## Choices are always lifetime parameters
 
 At present, the "choice" regions from a member constraint are always lifetime
-parameters from the current function. As of <!-- date: 2021-01 --> January 2021,
+parameters from the current function. As of <!-- date: 2021-10 --> October 2021,
 this falls out from the placement of impl Trait, though in the future it may not
 be the case. We take some advantage of this fact, as it simplifies the current
 code. In particular, we don't have to consider a case like `'0 member of ['1,