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.
This commit is contained in:
Josh Triplett 2023-07-03 16:01:35 -07:00
parent cf4b20d7cc
commit 615b58b9f9

View File

@ -366,7 +366,7 @@ where
+ Index<RangeTo<Idx>, Output = Self::Output>
+ Index<RangeFrom<Idx>, Output = Self::Output>
+ Index<RangeInclusive<Idx>, Output = Self::Output>
+ Index<RangeToInclusive<Idx>, Output = Self::Output> + Index<RangeFull>
+ Index<RangeToInclusive<Idx>, Output = Self::Output> + Index<RangeFull>,
```
### Type aliases