diff --git a/src/early-late-bound.md b/src/early-late-bound.md index f0f9f0a8..0c885976 100644 --- a/src/early-late-bound.md +++ b/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) {}