about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2023-07-11 16:42:34 -0400
committerMichael Goulet <michael@errs.io>2023-07-11 16:43:01 -0400
commitcd06e94517d7dbc361697d525c4aa5dd2b5f4f75 (patch)
tree5f206f0a64d563e4162722cc292a7537017ab986 /src/doc/rustc-dev-guide
parent72f921de4a7f1ceb304ae7e7d70f58cd5c92d7b5 (diff)
downloadrust-cd06e94517d7dbc361697d525c4aa5dd2b5f4f75.tar.gz
rust-cd06e94517d7dbc361697d525c4aa5dd2b5f4f75.zip
Update src/early-late-bound.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/early-late-bound.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/early-late-bound.md b/src/doc/rustc-dev-guide/src/early-late-bound.md
index 0c88597626d..8fb856742a3 100644
--- a/src/doc/rustc-dev-guide/src/early-late-bound.md
+++ b/src/doc/rustc-dev-guide/src/early-late-bound.md
@@ -15,7 +15,7 @@ with this topic.
 ## What does it mean for parameters to be early or late bound
 
 All function definitions conceptually have a ZST (this is represented by `TyKind::FnDef` in rustc).
-The only generics on this zst are the early bound parameters of the function definition. e.g.
+The only generics on this ZST are the early bound parameters of the function definition. e.g.
 ```rust
 fn foo<'a>(_: &'a u32) {}