diff options
| author | lcnr <rust@lcnr.de> | 2022-11-07 15:09:56 +0100 |
|---|---|---|
| committer | Tshepang Mbambo <tshepang@gmail.com> | 2022-11-07 16:49:22 +0200 |
| commit | 8782e6eabd368888933dc7e042b594ee29a173e2 (patch) | |
| tree | b155d7c436007a41310a90e93dcdaaa9a9618fea /src/doc/rustc-dev-guide | |
| parent | 17a00073cce5e96fedd81551d1e1a0bde28852cc (diff) | |
| download | rust-8782e6eabd368888933dc7e042b594ee29a173e2.tar.gz rust-8782e6eabd368888933dc7e042b594ee29a173e2.zip | |
trans -> codegen
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/traits/specialization.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/traits/specialization.md b/src/doc/rustc-dev-guide/src/traits/specialization.md index 7a30314b4b4..7cae5e9c1c6 100644 --- a/src/doc/rustc-dev-guide/src/traits/specialization.md +++ b/src/doc/rustc-dev-guide/src/traits/specialization.md @@ -36,7 +36,7 @@ as long as they are part of the same specialization family. In that case, it returns a *single* impl on success – this is the most specialized impl *known* to apply. However, if there are any inference variables in play, the returned impl may not be the actual impl we -will use at trans time. Thus, we take special care to avoid projecting +will use at codegen time. Thus, we take special care to avoid projecting associated types unless either (1) the associated type does not use `default` and thus cannot be overridden or (2) all input types are known concretely. |
