From 61608ca46d77c23de110419ee3d44845703d7848 Mon Sep 17 00:00:00 2001 From: inoas Date: Thu, 6 Oct 2016 00:02:09 +0200 Subject: [PATCH] improve doc blocks --- src/Validation/Validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Validation/Validation.php b/src/Validation/Validation.php index 446279d50e5..22708837d59 100644 --- a/src/Validation/Validation.php +++ b/src/Validation/Validation.php @@ -559,7 +559,7 @@ public static function truthy($check, array $truthyValues = []) /** * Validates if passed value is falsey. * - * The list of what is considered to be truthy values, may be set via $falseyValues. + * The list of what is considered to be falsey values, may be set via $falseyValues. * * @param boolean|integer|string $check Value to check. * @param array $falseyValues List of valid falsey values, defaults to `[false, 0, '0']`.