Browse Source

Fix a syntax error in an XML listing by adding a missing double-quote

Closes gh-29456
pull/29534/head
David Costanzo 3 years ago committed by GitHub
parent
commit
2a2c679f66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework-docs/src/docs/asciidoc/core/core-validation.adoc

2
framework-docs/src/docs/asciidoc/core/core-validation.adoc

@ -1634,7 +1634,7 @@ If you prefer XML-based configuration, you can use a @@ -1634,7 +1634,7 @@ If you prefer XML-based configuration, you can use a
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd>
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
<property name="registerDefaultFormatters" value="false" />

Loading…
Cancel
Save