Skip to content

Commit

Permalink
Correct error in tuple example in ruff formatter docs (#7822)
Browse files Browse the repository at this point in the history
## Summary

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

## Test Plan

N/A
  • Loading branch information
cosmojg authored Oct 4, 2023
1 parent 90de108 commit 76fcf63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ruff_python_formatter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ In particular, Ruff will always insert parentheses around tuples that expand ove
(a, b),
(
c,
c,
d,
),
)
```
Expand Down

0 comments on commit 76fcf63

Please sign in to comment.