CAMEL-16011: Fixed example thanks to Matthias Streidel for reporting.
diff --git a/camel-example-spring-boot-hystrix/README.adoc b/camel-example-spring-boot-hystrix/README.adoc
index c346e61..255de39 100644
--- a/camel-example-spring-boot-hystrix/README.adoc
+++ b/camel-example-spring-boot-hystrix/README.adoc
@@ -71,7 +71,7 @@
 For example using gradle, you can then access the web console locally
 at: `+http://localhost:7979/hystrix-dashboard+`.
 
-The stream is accessinble from the client at:
+The stream is accessible from the client at:
 `+http://localhost:8080/hystrix.stream+` which you can add as stream to
 the web console and then you should see the circuit breakers. In the
 screen shot below, we have just stopped service1, so the Hystrix EIP
diff --git a/camel-example-spring-boot-hystrix/client/src/main/java/sample/camel/ClientApplication.java b/camel-example-spring-boot-hystrix/client/src/main/java/sample/camel/ClientApplication.java
index f864ae0..3001331 100644
--- a/camel-example-spring-boot-hystrix/client/src/main/java/sample/camel/ClientApplication.java
+++ b/camel-example-spring-boot-hystrix/client/src/main/java/sample/camel/ClientApplication.java
@@ -40,9 +40,4 @@
         return new HystrixEventStreamServlet();
     }
 
-    @Bean
-    public ServletRegistrationBean servletRegistrationBean() {
-        return new ServletRegistrationBean(new HystrixEventStreamServlet(), "/hystrix.stream");
-    }
-
 }