Skip to content

Commit 6e6529a

Browse files
authored
Fix typos on index page
1 parent b74aa01 commit 6e6529a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can also load `Fakers` shipped `PSR-0` autoloader
3434
require_once '/path/to/Faker/src/autoload.php';
3535
```
3636

37-
*alternatively, you can use any another PSR-4 compliant autoloader*
37+
*alternatively, you can use any other PSR-4 compliant autoloader*
3838

3939
### Create fake data
4040

@@ -144,7 +144,7 @@ $faker->optional()->passthrough(mt_rand(5, 15));
144144
## Localization
145145

146146
`Faker\Factory` can take a locale as an argument, to return localized data. If no localized provider is found, the
147-
factory fallbacks to the default locale (en_US).
147+
factory falls back to the default locale (en_US).
148148

149149
```php
150150
// create a French faker
@@ -228,7 +228,7 @@ $populator->addEntity('Book', 5, [], [
228228

229229
## Seeding the Generator
230230

231-
You may want to get always the same generated data - for instance when using Faker for unit testing purposes. The generator offers a `seed()` method, which seeds the random number generator. Calling the same script twice with the same seed produces the same results.
231+
You may want to always get the same generated data - for instance when using Faker for unit testing purposes. The generator offers a `seed()` method, which seeds the random number generator. Calling the same script twice with the same seed produces the same results.
232232

233233
```php
234234
$faker = Faker\Factory::create();

0 commit comments

Comments
 (0)