Skip to content

Commit b927ecc

Browse files
Update src/early-late-bound.md
1 parent 16fb433 commit b927ecc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/early-late-bound.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ with this topic.
1515
## What does it mean for parameters to be early or late bound
1616

1717
All function definitions conceptually have a ZST (this is represented by `TyKind::FnDef` in rustc).
18-
The only generics on this zst are the early bound parameters of the function definition. e.g.
18+
The only generics on this ZST are the early bound parameters of the function definition. e.g.
1919
```rust
2020
fn foo<'a>(_: &'a u32) {}
2121

0 commit comments

Comments
 (0)