about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2025-01-25 14:00:46 +0900
committerGitHub <noreply@github.com>2025-01-25 14:00:46 +0900
commitbda56643be5e5eb26f5287d8b0af53339b0f9f70 (patch)
tree4ed46565421c1c32904a2017deaf2115acfd56bd /src/doc/rustc-dev-guide
parent93d73d3c3018e556245e9262f53f374713ca6d3f (diff)
parent17a14b627eedef258b4e8144615fc2460c13648e (diff)
downloadrust-bda56643be5e5eb26f5287d8b0af53339b0f9f70.tar.gz
rust-bda56643be5e5eb26f5287d8b0af53339b0f9f70.zip
Merge pull request #2221 from ada4a/patch-1
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/solve/significant-changes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/solve/significant-changes.md b/src/doc/rustc-dev-guide/src/solve/significant-changes.md
index c5bb8a01b12..c82b5d46896 100644
--- a/src/doc/rustc-dev-guide/src/solve/significant-changes.md
+++ b/src/doc/rustc-dev-guide/src/solve/significant-changes.md
@@ -42,7 +42,7 @@ old implementation structurally relates the aliases instead. This enables the
 new solver to stall equality until it is able to normalize the related aliases.
 
 The behavior of the old solver is incomplete and relies on eager normalization
-which replaces ambiguous aliases with inference variables. As this is not
+which replaces ambiguous aliases with inference variables. As this is
 not possible for aliases containing bound variables, the old implementation does
 not handle aliases inside of binders correctly, e.g. [#102048]. See the chapter on
 [normalization] for more details.