diff --git a/_includes/spring-features-band.html b/_includes/spring-features-band.html index fa2bfa8562..badabe0459 100755 --- a/_includes/spring-features-band.html +++ b/_includes/spring-features-band.html @@ -6,12 +6,12 @@
Already a Spring pro? You're in the right place. This guide shows you how to leverage your existing skills to build next-generation Java applications. Ditch the slow startup times and heavy memory footprint without ditching your knowledge. See how familiar concepts like DI, JPA, and MVC map directly to Quarkus and get ready to build cloud native, AI-infused apps.
Want to get started using Quarkus and leverage your hard-earned Spring skills?
-Download a free copy of “Quarkus for Spring Developers” by Eric Deadrea.
+Download a free copy of “Quarkus for Spring Developers” by Eric Deandrea.
Java can be clunky and slow. Quarkus for Spring Developers is a Spring developer's ultimate resource to learn about Quarkus and Kubernetes-native Java. Read the e-book to learn how Quarkus enables modern Java development and the Kubernetes-native experience and introduces familiar Spring concepts, constructs, and conventions.
-Download a free copy of “Quarkus for Spring Developers” by Eric Deadrea.
+Download a free copy of “Quarkus for Spring Developers” by Eric Deandrea.
diff --git a/_posts/2023-06-23-quarkus-cli.adoc b/_posts/2023-06-23-quarkus-cli.adoc
index d340a39351..67cc92da68 100644
--- a/_posts/2023-06-23-quarkus-cli.adoc
+++ b/_posts/2023-06-23-quarkus-cli.adoc
@@ -113,7 +113,7 @@ quarkus image build jib --help
==== Deploying applications ====
In a way similar to building container images Quarkus allowed the application deployment to platforms like https://kubernetes.io[Kubernetes] and https://openshift.com[OpenShift].
Again, this is something the required the use of extensions and additional build options to enable deployment.
-For example to deploy an application on https://kubernetes.io[Kubernetes] one needed to explicitly add the extension to the project and enable deployment using the `quakrus.kubernetes.deploy` property.
+For example to deploy an application on https://kubernetes.io[Kubernetes] one needed to explicitly add the extension to the project and enable deployment using the `quarkus.kubernetes.deploy` property.
[source,sh]
----