summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-05-28 00:36:52 +0200
committerGuillem Jover <guillem@debian.org>2014-05-28 00:36:52 +0200
commit6f5b608a28fbd67e1aa913897203b058dfa66abb (patch)
tree87707f52fffae606a8bd76eb25166c204f1eeaeb /doc
parentc7ad73d0a95ed527e1efe013b97cf849f3af55e9 (diff)
downloaddpkg-6f5b608a28fbd67e1aa913897203b058dfa66abb.tar.gz
doc: Uppercase enum values in C coding style
Diffstat (limited to 'doc')
-rw-r--r--doc/coding-style.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/coding-style.txt b/doc/coding-style.txt
index 3e1a30d05..ce771b751 100644
--- a/doc/coding-style.txt
+++ b/doc/coding-style.txt
@@ -73,9 +73,9 @@ Examples:
*/
enum value_list {
/** Value doing foo. */
- value_a,
+ VALUE_A,
/** Value doing bar. */
- value_b,
+ VALUE_B,
};
/**