From b5bb1847667930e095a28904bef45662e2de20a6 Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Sat, 28 Nov 2015 16:02:49 +0900 Subject: [PATCH] Fix typo in reference doc Closes gh-4635 --- spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index f8c4bc749c..77c14488ac 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -93,7 +93,7 @@ If you import additional starters, you can safely omit the version number. With that setup, you can also override individual dependencies by overriding a property in your own project. For instance, to upgrade to another Spring Data release train you'd -add the following to your `pom.xml +add the following to your `pom.xml`. [source,xml,indent=0,subs="verbatim,quotes,attributes"] ---- @@ -137,7 +137,7 @@ That setup does not allow you to override individual dependencies using a proper explained above. To achieve the same result, you'd need to add an entry in the `dependencyManagement` of your project **before** the `spring-boot-dependencies` entry. For instance, to upgrade to another Spring Data release train you'd add the -following to your `pom.xml +following to your `pom.xml`. [source,xml,indent=0,subs="verbatim,quotes,attributes"] ----