add struct style info to docs
diff --git a/docs/contributing.rst b/docs/contributing.rst
index b125d1a..fe87ac2 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -65,6 +65,16 @@
     // 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