about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2022-10-31 13:51:42 -0300
committerGitHub <noreply@github.com>2022-10-31 13:51:42 -0300
commitd3e6e89125f40a527e751bda789a6e425faa30cc (patch)
tree049a23ca46d184b8f99481f920c703d76bb85984 /src/doc/rustc-dev-guide
parente8ceee58b22d25ff82e546d32a4d209c58fba065 (diff)
downloadrust-d3e6e89125f40a527e751bda789a6e425faa30cc.tar.gz
rust-d3e6e89125f40a527e751bda789a6e425faa30cc.zip
trans -> codegen (#1500)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/traits/resolution.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/traits/resolution.md b/src/doc/rustc-dev-guide/src/traits/resolution.md
index 88767ad9461..9cf753b199d 100644
--- a/src/doc/rustc-dev-guide/src/traits/resolution.md
+++ b/src/doc/rustc-dev-guide/src/traits/resolution.md
@@ -52,7 +52,7 @@ by proving that an appropriate impl does exist.
 
 During type checking, we do not store the results of trait selection.
 We simply wish to verify that trait selection will succeed. Then
-later, at trans time, when we have all concrete types available, we
+later, at codegen time, when we have all concrete types available, we
 can repeat the trait selection to choose an actual implementation, which
 will then be generated in the output binary.