More fix
diff --git a/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md b/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
index 00ec1b7..56eb710 100644
--- a/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
+++ b/content/blog/2021/08/DeployingCamelRouteInAWSLambda/index.md
@@ -74,7 +74,7 @@
 
 It also generates a zip file target/function.zip. This zip file contains your java code along with the dependencies.
 
-##<a name="native"> </a>Building and Packaging the Java code as Quarkus Native executable
+##Building and Packaging the Java code as Quarkus Native executable
 
 If you want a lower memory footprint and faster initialization times for your lambda, you can compile your Java code to a native executable. Just make sure to rebuild your project with the -Pnative switch.
 > :warning: **Building Native Executables will take much longer time and depends on the underlying system**
@@ -108,7 +108,7 @@
 
 * sam.native.yaml - (optional) for use with sam cli and native local testing
 
-> :information_source: [Please click here to know more on how to use these scripts for automated deployment](https://quarkus.io/guides/amazon-lambda#extra-build-generated-files)
+> [Please click here to know more on how to use these scripts for automated deployment](https://quarkus.io/guides/amazon-lambda#extra-build-generated-files)
 
 ## Deploying the Quarkus JVM application to AWS Lambda via AWS Web Console