diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-18 14:57:18 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-18 14:57:18 -0700 |
commit | 1e8744a5bf9dc09215f9aed9606081fc6eee517a (patch) | |
tree | 53e6f40abeb58025a781dfa3ffb01480da53a852 | |
parent | e6466a50ea3ee6798c904649d6c67e01eef96b14 (diff) | |
download | cryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.tar.gz cryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.tar.bz2 cryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.zip |
DOcument the use of spaces here
-rw-r--r-- | docs/contributing.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst index 7bb7c43e..b125d1af 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -82,6 +82,15 @@ Wrap lines at 80 characters like so: 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 ------------- |