From d3a3d233835c01bf1544fa5315ac0b05d2f3c344 Mon Sep 17 00:00:00 2001 From: Woody Gilk Date: Fri, 4 Dec 2015 08:31:48 -0600 Subject: [PATCH] Remove confusing "non-blank" phrase Trailing whitespace is not allowed in any situation. A LF does not constitute whitespace. --- proposed/extended-coding-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposed/extended-coding-style-guide.md b/proposed/extended-coding-style-guide.md index 494bbf68f..8fffdfb2a 100644 --- a/proposed/extended-coding-style-guide.md +++ b/proposed/extended-coding-style-guide.md @@ -98,7 +98,7 @@ MUST warn but MUST NOT error at the soft limit. Lines SHOULD NOT be longer than 80 characters; lines longer than that SHOULD be split into multiple subsequent lines of no more than 80 characters each. -There MUST NOT be trailing whitespace at the end of non-blank lines. +There MUST NOT be trailing whitespace at the end of lines. Blank lines MAY be added to improve readability and to indicate related blocks of code except where explictly forbidden.