From 47ccc3831cf9ee71b92b918188075b28de18a136 Mon Sep 17 00:00:00 2001 From: adsick Date: Fri, 23 Apr 2021 01:40:44 +0300 Subject: [PATCH] fixed a typo in traits.md line 46: Trait functions are **are** not allowed to be [`async`] or [`const`]. now: Trait functions are not allowed to be [`async`] or [`const`]. --- src/items/traits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/traits.md b/src/items/traits.md index 8bf08f457..e5f766f5f 100644 --- a/src/items/traits.md +++ b/src/items/traits.md @@ -43,7 +43,7 @@ trait Example { } ``` -Trait functions are are not allowed to be [`async`] or [`const`]. +Trait functions are not allowed to be [`async`] or [`const`]. ## Trait bounds