From 5b78fece0e2751440ff053d6d62b7a5b54b1753d Mon Sep 17 00:00:00 2001 From: Samuel Knowlton Date: Wed, 17 Jun 2020 15:28:21 -0500 Subject: [PATCH] Fix annotations on validate() Add spaces between argument names and text --- models/validators/MethodValidator.cfc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/models/validators/MethodValidator.cfc b/models/validators/MethodValidator.cfc index 682b40d..54970e1 100644 --- a/models/validators/MethodValidator.cfc +++ b/models/validators/MethodValidator.cfc @@ -19,11 +19,11 @@ component accessors="true" singleton { /** * Will check if an incoming value validates * - * @validationResultThe result object of the validation - * @targetThe target object to validate on - * @fieldThe field on the target object to validate on - * @targetValueThe target value to validate - * @validationDataThe validation data the validator was created with + * @validationResult The result object of the validation + * @target The target object to validate on + * @field The field on the target object to validate on + * @targetValue The target value to validate + * @validationData The validation data the validator was created with */ boolean function validate( required any validationResult,