Remove trailing whitespace
diff --git a/content/blog/2020/06/camel34-whatsnew/index.md b/content/blog/2020/06/camel34-whatsnew/index.md
index 7d6f867..0178e7a 100644
--- a/content/blog/2020/06/camel34-whatsnew/index.md
+++ b/content/blog/2020/06/camel34-whatsnew/index.md
@@ -60,7 +60,7 @@
 ### Endpoint DSL
 
 The [Endpoint DSL](https://camel.apache.org/manual/latest/Endpoint-dsl.html) had a number of annoying bugs fixed and other improvements.
-It is now also easier to use Endpoint DSL to configure endpoints in POJOs as Java fields in a type-safe manner, 
+It is now also easier to use Endpoint DSL to configure endpoints in POJOs as Java fields in a type-safe manner,
 by using `FluentProducerTemplate` and in `RouteBuilder` classes as in this example:
 
 ```
@@ -75,7 +75,7 @@
         producer.withBody(data).to(mqtt).send();
     }
 
-}    
+}
 ```
 
 You can read more in the manual about [Endpoint DSL](https://camel.apache.org/manual/latest/Endpoint-dsl.html) and
@@ -90,7 +90,7 @@
 This release also adds two new components:
 
 - AWS2 Athena
-- RestEasy 
+- RestEasy
 
 #### Other Changes