summaryrefslogtreecommitdiffstats
path: root/doc/coding-style.txt
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-11-02 22:21:36 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-11-02 14:58:20 -0500
commitbd816f4063dd24ed4f4300fb326854f59ea8ebb4 (patch)
treeada39640728e102fe69a15fd6b2e7658463ca5f1 /doc/coding-style.txt
parent7f4a14cafe750fd18f7f9ac0282ad34b57881f3a (diff)
downloadofono-bd816f4063dd24ed4f4300fb326854f59ea8ebb4.tar.bz2
coding_style: Fix enum name
Diffstat (limited to 'doc/coding-style.txt')
-rw-r--r--doc/coding-style.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/coding-style.txt b/doc/coding-style.txt
index 95ed50b3..9e5a8111 100644
--- a/doc/coding-style.txt
+++ b/doc/coding-style.txt
@@ -167,7 +167,7 @@ enum animal_type {
If the enum contents have values (e.g. from specification) the preferred
formatting is as follows:
-enum animal type {
+enum animal_type {
ANIMAL_TYPE_FOUR_LEGS = 4,
ANIMAL_TYPE_EIGHT_LEGS = 8,
ANIMAL_TYPE_TWO_LEGS = 2,