From 76fcf63052a438b25edb51b5c9296cef3020ab2e Mon Sep 17 00:00:00 2001 From: Cosmo Date: Wed, 4 Oct 2023 18:51:17 -0400 Subject: [PATCH] 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 --- crates/ruff_python_formatter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_python_formatter/README.md b/crates/ruff_python_formatter/README.md index 3912d52e6dccf..d8e61883ddb2d 100644 --- a/crates/ruff_python_formatter/README.md +++ b/crates/ruff_python_formatter/README.md @@ -428,7 +428,7 @@ In particular, Ruff will always insert parentheses around tuples that expand ove (a, b), ( c, - c, + d, ), ) ```