Skip to content

Commit 615b58b

Browse files
committed
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.
1 parent cf4b20d commit 615b58b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/style-guide/src/items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ where
366366
+ Index<RangeTo<Idx>, Output = Self::Output>
367367
+ Index<RangeFrom<Idx>, Output = Self::Output>
368368
+ Index<RangeInclusive<Idx>, Output = Self::Output>
369-
+ Index<RangeToInclusive<Idx>, Output = Self::Output> + Index<RangeFull>
369+
+ Index<RangeToInclusive<Idx>, Output = Self::Output> + Index<RangeFull>,
370370
```
371371

372372
### Type aliases

0 commit comments

Comments
 (0)