From 9968a15ef8acdf5de6fd481c27a0c7982904e612 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 28 Jul 2018 15:21:19 -0700 Subject: [PATCH] Clarifying code style for multiline constructs. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 75d623a55..ef822bc76 100644 --- a/README.md +++ b/README.md @@ -334,10 +334,10 @@ the following deviations from PEP 8: * For strings, prefer single quotes over double quotes. * Limit all lines to a maximum of 100 characters. * Use trailing commas within multiline values or argument lists. - * Within multiline constructs: - * Use standard four-space indentation. Don't align indentation with an opening - delimeter. - * Put opening and closing delimeters on lines separate from their contents. + * For multiline constructs, put opening and closing delimeters on lines + separate from their contents. + * Within multiline constructs, use standard four-space indentation. Don't align + indentation with an opening delimeter. ### Development