From 615b58b9f987158e0d264b3f249339a9ebd70ca0 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Mon, 3 Jul 2023 16:01:35 -0700 Subject: [PATCH] style-guide: Fix an example to match the style The style guide requires a trailing comma on where clause components, but then gives an example that doesn't include one. Add the missing trailing comma. --- src/doc/style-guide/src/items.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/style-guide/src/items.md b/src/doc/style-guide/src/items.md index 7b5e523d66e..ae8a36d68e2 100644 --- a/src/doc/style-guide/src/items.md +++ b/src/doc/style-guide/src/items.md @@ -366,7 +366,7 @@ where + Index, Output = Self::Output> + Index, Output = Self::Output> + Index, Output = Self::Output> - + Index, Output = Self::Output> + Index + + Index, Output = Self::Output> + Index, ``` ### Type aliases