From a86072725f6df73328d95d685bedf01c2aea3620 Mon Sep 17 00:00:00 2001 From: sade <41547641+sumade123@users.noreply.github.com> Date: Wed, 17 Mar 2021 15:01:37 +0000 Subject: [PATCH] Update multi_bounds.md --- src/generics/multi_bounds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generics/multi_bounds.md b/src/generics/multi_bounds.md index 5f51a6c24b..969ba6417e 100644 --- a/src/generics/multi_bounds.md +++ b/src/generics/multi_bounds.md @@ -1,6 +1,6 @@ # Multiple bounds -Multiple bounds can be applied with a `+`. Like normal, different types are +Multiple bounds for a single type can be applied with a `+`. Like normal, different types are separated with `,`. ```rust,editable