Update src/early-late-bound.md

This commit is contained in:
Michael Goulet 2023-07-11 16:42:34 -04:00
parent 16fb433be8
commit b927ecccc3
1 changed files with 1 additions and 1 deletions

View File

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