From ec67371c7a675b6d5ccecb4c4236b5ed07808ff5 Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Tue, 11 Jul 2023 16:42:34 -0400 Subject: [PATCH] Update src/early-late-bound.md --- 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 0c885976..8fb85674 100644 --- a/src/early-late-bound.md +++ b/src/early-late-bound.md @@ -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) {}