Skip to content

Commit

Permalink
Standardize ISO method name in README and docs
Browse files Browse the repository at this point in the history
Updated the method name from 'createIteratorFromIso3166' to 'createIteratorFromISO3166' in README.md and docs/index.md. This standardizes the capitalization in the method name, ensuring consistency throughout the documentation.

Signed-off-by: Frank Brückner <[email protected]>
  • Loading branch information
froschdesign committed May 28, 2024
1 parent f7fbe36 commit 31ef31f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ by adding the [ISO 639-1 language-code](https://en.wikipedia.org/wiki/ISO_3166-2

```php
// Get the holidays for mainland france
$iterator = $factory->createIteratorFromIso3166('FR');
$iterator = $factory->createIteratorFromISO3166('FR');

// Get the holidays for the french overseas-department La Reunion
$iterator = $factory->createIteratorFromIso3166('FR-RE');
$iterator = $factory->createIteratorFromISO3166('FR-RE');

// Get the dutch holidays for belgium
$iterator = $factory->createIteratorFromIso3166('fr_BE');
$iterator = $factory->createIteratorFromISO3166('fr_BE');
```

## Available Countries
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ by adding the [ISO 639-1 language-code](https://en.wikipedia.org/wiki/ISO_3166-2

```php
// Get the holidays for mainland france
$iterator = $factory->createIteratorFromIso3166('FR');
$iterator = $factory->createIteratorFromISO3166('FR');

// Get the holidays for the french overseas-department La Reunion
$iterator = $factory->createIteratorFromIso3166('FR-RE');
$iterator = $factory->createIteratorFromISO3166('FR-RE');

// Get the dutch holidays for belgium
$iterator = $factory->createIteratorFromIso3166('fr_BE');
$iterator = $factory->createIteratorFromISO3166('fr_BE');
```

## Available Countries
Expand Down

0 comments on commit 31ef31f

Please sign in to comment.