From 9e27603773164ce3bb916e003d91b33fdd45f7c7 Mon Sep 17 00:00:00 2001 From: hkhere <33268704+hkhere@users.noreply.github.com> Date: Sat, 8 Jan 2022 14:40:40 +0800 Subject: [PATCH] trait-bounds.md: add pronoun 'that' --- src/trait-bounds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trait-bounds.md b/src/trait-bounds.md index cc3f4a1bd..f284ca4eb 100644 --- a/src/trait-bounds.md +++ b/src/trait-bounds.md @@ -122,7 +122,7 @@ For example, if `'a` is an unconstrained lifetime parameter, then `i32: 'static` >    `for` [_GenericParams_] Type bounds may be *higher ranked* over lifetimes. These bounds specify a bound -is true *for all* lifetimes. For example, a bound such as `for<'a> &'a T: +that is true *for all* lifetimes. For example, a bound such as `for<'a> &'a T: PartialEq` would require an implementation like ```rust