diff options
Diffstat (limited to 'doc/coding-style.txt')
-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, }; /** |