style-guide: Fix example to match the rule it exemplifies (and match rustfmt)

An example immediately following "Put each bound on its own line." did
not put each bound on its own line.
This commit is contained in:
Josh Triplett
2023-07-05 16:36:47 -07:00
parent 69d29a70da
commit 144e8a3866
+2 -1
View File
@@ -369,7 +369,8 @@ 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