Polished
diff --git a/examples/camel-example-main-health/src/main/resources/application.properties b/examples/camel-example-main-health/src/main/resources/application.properties
index 8667786..2cbe433 100644
--- a/examples/camel-example-main-health/src/main/resources/application.properties
+++ b/examples/camel-example-main-health/src/main/resources/application.properties
@@ -20,8 +20,8 @@
 camel.main.name = MyHealthyCamel
 
 # extended runtime statistics about bean introspection usage (java reflection)
-camel.main.bean-introspection-extended-statistics=true
-camel.main.bean-introspection-logging-level=INFO
+### camel.main.bean-introspection-extended-statistics=true
+### camel.main.bean-introspection-logging-level=INFO
 
 # enable JMX which allows to also control health check
 camel.main.jmx-enabled = true
@@ -48,11 +48,11 @@
 # registry check is default included but we can turn it on|off
 camel.health.registry-enabled = true
 
-# you can turn on individual routes as shown below
+# you can turn on or off individual routes as shown below
 ### camel.heath.config[timer].parent = routes
-### camel.heath.config[timer].enable = true
+### camel.heath.config[timer].enabled = true
 ### camel.heath.config[netty].check = routes
-### camel.heath.config[netty].enable = false
+### camel.heath.config[netty].enabled = false
 
 # and configure each individually
 camel.health.config[timer].parent = routes
@@ -63,7 +63,7 @@
 
 # find grained routes configuration per route (support wildcards)
 # (enabled is default true for discovered health-checks)
-### zcamel.health.config[*].enabled = true
+### camel.health.config[*].enabled = true
 
 # allow 5 failures with 10s apart as slack to handle routes being flaky
 # however if after 5 failures then the state will be regarded as DOWN onwards