diff --git a/docs/book/validators/is-int.md b/docs/book/validators/is-int.md index 848d065f..6cd6eada 100755 --- a/docs/book/validators/is-int.md +++ b/docs/book/validators/is-int.md @@ -66,7 +66,7 @@ echo $validator->getLocale(); // 'en_US' ### Default Value By default, if no locale is provided, `IsInt` will use the system locale -provide by PHP's `Locale::getDefault()`. +provided by PHP's `Locale::getDefault()`. ## Strict Validation diff --git a/docs/book/validators/phone-number.md b/docs/book/validators/phone-number.md index 8a4fcc80..11d4d800 100755 --- a/docs/book/validators/phone-number.md +++ b/docs/book/validators/phone-number.md @@ -12,7 +12,7 @@ var_dump($validator->isValid('+4930123456')); // true ``` By default, if no country code is provided, `PhoneNumber` will use the system -locale provide by PHP's `Locale::getDefault()` and `Locale::getRegion()` to +locale provided by PHP's `Locale::getDefault()` and `Locale::getRegion()` to extract the country code. (The above example assumes that the environment locale is set to `de_DE`.) @@ -55,7 +55,7 @@ echo $validator->getCountry(); // 'US' ### Default Value By default, if no country is provided, `PhoneNumber` will use the system locale -provide by PHP's `Locale::getDefault()` and `Locale::getRegion()` to extract +provided by PHP's `Locale::getDefault()` and `Locale::getRegion()` to extract the region code. ## Using Allowed Phone Number Patterns