diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml
index 223004bed89..53925a7aa15 100644
--- a/spring-boot-dependencies/pom.xml
+++ b/spring-boot-dependencies/pom.xml
@@ -1365,6 +1365,11 @@
tomcat-annotations-api
${tomcat.version}
+
+ org.apache.tomcat
+ tomcat-annotations-api
+ ${tomcat.version}
+
org.apache.tomcat
tomcat-jdbc
diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
index c0a22c5c035..481b17e61e3 100644
--- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
@@ -980,7 +980,7 @@ does not inject other beans from the context. Having said that, The
`@EnableConfigurationProperties` annotation is _also_ automatically applied to your project
so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured
from the `Environment`. You could shortcut `MyConfiguration` above by making sure
-`FooProperties` is a already a bean:
+`FooProperties` is already a bean:
[source,java,indent=0]
----