s/#ifdef CONFIG_/#if ENABLE_/g

diff --git a/docs/style-guide.txt b/docs/style-guide.txt
index 381275a..7560d69 100644
--- a/docs/style-guide.txt
+++ b/docs/style-guide.txt
@@ -377,13 +377,13 @@
 
 	(in .h header file)
 
-		#ifdef CONFIG_FEATURE_FUNKY
-		static inline void maybe_do_funky_stuff (int bar, int baz)
+		#if ENABLE_FEATURE_FUNKY
+		static inline void maybe_do_funky_stuff(int bar, int baz)
 		{
 			/* lotsa code in here */
 		}
 		#else
-		static inline void maybe_do_funky_stuff (int bar, int baz) {}
+		static inline void maybe_do_funky_stuff(int bar, int baz) {}
 		#endif
 
 	(in the .c source file)