aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-19 18:15:05 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-19 18:15:05 -0700
commit9f9f550a1803fbeb930ff4debfc825bfba0819ca (patch)
treebfc35d63adc7d0a0462ce9d17d08e1f32496ae2a /docs
parent6d0d2949542eb976e4d8d0cc8873abebaaba68b7 (diff)
parent3ed80ba1c1773a0e45538e432573d91cfb388b0f (diff)
downloadcryptography-9f9f550a1803fbeb930ff4debfc825bfba0819ca.tar.gz
cryptography-9f9f550a1803fbeb930ff4debfc825bfba0819ca.tar.bz2
cryptography-9f9f550a1803fbeb930ff4debfc825bfba0819ca.zip
Merge pull request #145 from reaperhulk/struct-style
Add struct style info to docs
Diffstat (limited to 'docs')
-rw-r--r--docs/contributing.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
index dc8ce453..6a76c705 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -62,6 +62,16 @@ Don't name parameters:
// Bad
long f(long x);
+...unless they're inside a struct:
+
+.. code-block:: c
+
+ struct my_struct {
+ char *name;
+ int number;
+ ...;
+ };
+
Don't include stray ``void`` parameters:
.. code-block:: c