From 16fb433be82863dd5130cec5938952b1b4f8d464 Mon Sep 17 00:00:00 2001 From: Boxy Date: Tue, 11 Jul 2023 21:21:51 +0100 Subject: [PATCH] caps is so important Co-authored-by: Michael Goulet --- src/early-late-bound.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {}