diff options
| author | Boxy <supbscripter@gmail.com> | 2023-07-11 21:21:51 +0100 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2023-07-11 16:43:01 -0400 |
| commit | 72f921de4a7f1ceb304ae7e7d70f58cd5c92d7b5 (patch) | |
| tree | b7bb46bd834951703e7d2fa2faa6d3fbdd0e3e80 /src/doc | |
| parent | 3bcfdddbb171d75eb84daf14fc6e595fe7f4de38 (diff) | |
| download | rust-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.md | 2 |
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) {} |
