Correct error in tuple example in ruff formatter docs (#7822)

## Summary

The fourth element should be "d" instead of "c" in the tuple example in
the ruff formatter docs.

## Test Plan

N/A
This commit is contained in:
Cosmo 2023-10-04 18:51:17 -04:00 committed by GitHub
parent 90de108bfa
commit 76fcf63052
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -428,7 +428,7 @@ In particular, Ruff will always insert parentheses around tuples that expand ove
(a, b),
(
c,
c,
d,
),
)
```