Undo accidental part of a commit

This commit is contained in:
Brett Cannon 2016-01-20 19:18:33 -08:00
parent b424590050
commit 70cff256c5
1 changed files with 3 additions and 3 deletions

View File

@ -75,9 +75,9 @@ Code lay-out
}
* Code structure: one space between keywords like ``if``, ``for`` and
the following left paren; no spaces inside the paren; braces are
strongly preferred but may be omitted where C permits, and they
should be formatted as shown::
the following left paren; no spaces inside the paren; braces may be
omitted where C permits but when present, they should be formatted
as shown::
if (mro != NULL) {
...