diff options
author | Guillem Jover <guillem@debian.org> | 2014-05-28 00:36:52 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2014-05-28 00:36:52 +0200 |
commit | 6f5b608a28fbd67e1aa913897203b058dfa66abb (patch) | |
tree | 87707f52fffae606a8bd76eb25166c204f1eeaeb /doc | |
parent | c7ad73d0a95ed527e1efe013b97cf849f3af55e9 (diff) | |
download | dpkg-6f5b608a28fbd67e1aa913897203b058dfa66abb.tar.gz |
doc: Uppercase enum values in C coding style
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coding-style.txt | 4 |
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, }; /** |