about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorBoxy <supbscripter@gmail.com>2023-07-11 21:21:51 +0100
committerMichael Goulet <michael@errs.io>2023-07-11 16:43:01 -0400
commit72f921de4a7f1ceb304ae7e7d70f58cd5c92d7b5 (patch)
treeb7bb46bd834951703e7d2fa2faa6d3fbdd0e3e80 /src/doc
parent3bcfdddbb171d75eb84daf14fc6e595fe7f4de38 (diff)
downloadrust-72f921de4a7f1ceb304ae7e7d70f58cd5c92d7b5.tar.gz
rust-72f921de4a7f1ceb304ae7e7d70f58cd5c92d7b5.zip
caps is so important
Co-authored-by: Michael Goulet <michael@errs.io>
Diffstat (limited to 'src/doc')
-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 f0f9f0a85f0..0c88597626d 100644
--- a/src/doc/rustc-dev-guide/src/early-late-bound.md
+++ b/src/doc/rustc-dev-guide/src/early-late-bound.md
@@ -14,7 +14,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).
+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.
 ```rust
 fn foo<'a>(_: &'a u32) {}