about summary refs log tree commit diff
path: root/CONTRIBUTING
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2016-03-01 16:56:10 +0100
committerMichael Biebl <biebl@debian.org>2016-03-01 16:56:10 +0100
commite62b307a9dd108e664aa507355ed3dd15a9c6d67 (patch)
tree2957d1a0dde11be8bd9f506f8b075d21b85da2d0 /CONTRIBUTING
parentde39787fedbff438bd933c30675fc5c026db6aa0 (diff)
parentc2de0d98ba39e0a1a970d066fd19be786092f376 (diff)
Merge tag 'upstream/1.1.91'
Upstream version 1.1.91
Diffstat (limited to 'CONTRIBUTING')
-rw-r--r--CONTRIBUTING5
1 files changed, 1 insertions, 4 deletions
diff --git a/CONTRIBUTING b/CONTRIBUTING
index 47f93700..d3ea0ce7 100644
--- a/CONTRIBUTING
+++ b/CONTRIBUTING
@@ -21,13 +21,10 @@ with #ifdef MY_DEFINE / #endif in the code.
     GOOD: g_strdup (x)
     BAD:  g_strdup(x)
 
-* C-style comments, except for FIXMEs.
+* C-style comments
     GOOD: f(x);  /* comment */
     BAD:  f(x);  // comment
 
-    GOOD: // FIXME: juice the gooblygok
-    BAD:  /* FIXME: juice the gooblygok */
-
 * Keep assignments in the variable declaration area pretty short.
     GOOD: MyObject *object;
     BAD: MyObject *object = complex_and_long_init_function(arg1, arg2, arg3);