From e46278408fa2a9d387fec94b43ef4882a0cd0f16 Mon Sep 17 00:00:00 2001 From: Alexander Obuhovich Date: Fri, 11 Mar 2016 18:22:02 +0200 Subject: [PATCH] Another typo fix Extracted from #3 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0592d8f..a555230 100644 --- a/README.md +++ b/README.md @@ -55,17 +55,17 @@ The policy also has short-cut helpers for creating constraints: * `atLeast($n)`: At least the param matches - Equivilant to `between($n, PHP_INT_MAX)` + Equivalent to `between($n, PHP_INT_MAX)` * `atMost($n)`: At most the param matches - Equivilant to `between(0, $n)` + Equivalent to `between(0, $n)` * `between($min, $max)`: Between $min and $max number of matches * `never()`: No matches - Equivilant to `between(0, 0)` + Equivalent to `between(0, 0)` ## Testing the policy