From 037e3a4221c71b2db12062b68453e18fdd6801b4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 12 Sep 2014 12:22:23 -0500 Subject: [PATCH] Fix typo in documentation Fixes gh-1527 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6b4ed389b3..b111a571e4 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1862,7 +1862,7 @@ resolved against their provided names. ==== Using a JNDI ConnectionFactory If you are running your application in an Application Server Spring Boot will attempt to locate a JMS `ConnectionFactory` using JNDI. By default the locations `java:/JmsXA` and -`java:/XAConnectionFactory` will checked. You can use the +`java:/XAConnectionFactory` will be checked. You can use the `spring.jms.jndi-name` property if you need to specify an alternative location: [source,properties,indent=0]