Merge pull request #1181 from kosmaty:validation-doc-formatting-fix

* pr/1181:
  Add missing quotation mark
This commit is contained in:
Stephane Nicoll 2016-09-19 14:46:30 +02:00
commit 3e11a30c64
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }