| commit | 1e8744a5bf9dc09215f9aed9606081fc6eee517a | [log] [tgz] |
|---|---|---|
| author | Alex Gaynor <alex.gaynor@gmail.com> | Fri Oct 18 14:57:18 2013 -0700 |
| committer | Alex Gaynor <alex.gaynor@gmail.com> | Fri Oct 18 14:57:18 2013 -0700 |
| tree | 53e6f40abeb58025a781dfa3ffb01480da53a852 | |
| parent | e6466a50ea3ee6798c904649d6c67e01eef96b14 [diff] |
DOcument the use of spaces here
diff --git a/docs/contributing.rst b/docs/contributing.rst index 7bb7c43..b125d1a 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst
@@ -82,6 +82,15 @@ long f(long, long, int *) +Include a space after commas between parameters: + +.. code-block:: c + + // Good + long f(int, char *) + // Bad + long f(int,char *) + Documentation -------------