commit | 047dab8e76639ef2682c78b899ee9ba1f7ba28f8 | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Fri Dec 27 16:45:52 2013 -0600 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Fri Dec 27 16:45:52 2013 -0600 |
tree | 6723165f796a1ac64a31769697fba55e352f070b | |
parent | 64db0292ac574cb1c965585439b3155199ada414 [diff] [blame] |
update style guide docs to reflect change to (void)
diff --git a/docs/contributing.rst b/docs/contributing.rst index 620e1b6..139f7f3 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst
@@ -110,14 +110,14 @@ ...; }; -Don't include stray ``void`` parameters: +Include ``void`` if the function takes no arguments: .. code-block:: c // Good - long f(); - // Bad long f(void); + // Bad + long f(); Wrap lines at 80 characters like so: