caps is so important

Co-authored-by: Michael Goulet <michael@errs.io>
This commit is contained in:
Boxy 2023-07-11 21:21:51 +01:00 committed by Michael Goulet
parent 6e0f9a28d7
commit 7a8d862e0b
1 changed files with 1 additions and 1 deletions

View File

@ -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) {}