Browse Source

Add missing quotation mark

Closes gh-1181
pull/1176/head
Krzysztof Kosmatka 8 years ago committed by Stephane Nicoll
parent
commit
906827ea92
  1. 2
      src/asciidoc/core-validation.adoc

2
src/asciidoc/core-validation.adoc

@ -136,7 +136,7 @@ and use it like so:
} }
if (!addressValidator.supports(Address.class)) { if (!addressValidator.supports(Address.class)) {
throw new IllegalArgumentException("The supplied [Validator] must " + throw new IllegalArgumentException("The supplied [Validator] must " +
support the validation of [Address] instances."); "support the validation of [Address] instances.");
} }
this.addressValidator = addressValidator; this.addressValidator = addressValidator;
} }

Loading…
Cancel
Save