aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-18 14:57:18 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-18 14:57:18 -0700
commit1e8744a5bf9dc09215f9aed9606081fc6eee517a (patch)
tree53e6f40abeb58025a781dfa3ffb01480da53a852 /docs
parente6466a50ea3ee6798c904649d6c67e01eef96b14 (diff)
downloadcryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.tar.gz
cryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.tar.bz2
cryptography-1e8744a5bf9dc09215f9aed9606081fc6eee517a.zip
DOcument the use of spaces here
Diffstat (limited to 'docs')
-rw-r--r--docs/contributing.rst9
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
-------------