Skip to content

Commit

Permalink
Fixes typos in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Mar 15, 2020
1 parent aeb3454 commit e049ac1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/book/validators/is-int.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/book/validators/phone-number.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e049ac1

Please sign in to comment.