From 0aa16506a1e4102b60f6acf84483d5170f417137 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Wed, 4 Oct 2023 18:42:12 -0400 Subject: [PATCH] Correct error in tuple example The fourth element should be "d" instead of "c" --- 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, ), ) ```