Skip to content

Commit

Permalink
Merge pull request #5 from dallincoons/fix-readme
Browse files Browse the repository at this point in the history
update readme typo
  • Loading branch information
poing committed Jun 1, 2020
2 parents 12f2300 + 1fcb661 commit 8268244
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ Earkmarked::unset($serial);
You can also *specify* the number of values to return in an array:

```php
$serial = Earkmarked::get(3); // Returns: [ '2011', '2012', '2013', ]
Earkmarked::unset($serial);
$serial = Earmarked::get(3); // Returns: [ '2011', '2012', '2013', ]
Earmarked::unset($serial);
```

## Advanced Usage
Expand All @@ -144,8 +144,8 @@ $earmark->get(3); // Returns: [ 'ZULU0000005001', 'ZULU0000005002', 'ZULU0000005

```php
// Default Series
$serial = Earkmarked::get(); // Returns: '2014'
$serial = Earkmarked::get(3); // Returns: [ '2015', '2016', '2017', ]
$serial = Earmarked::get(); // Returns: '2014'
$serial = Earmarked::get(3); // Returns: [ '2015', '2016', '2017', ]

// Using Same Parameters Again
$earmark = new Earmark('ZULU', null, 10, 5000, null);
Expand Down Expand Up @@ -187,4 +187,4 @@ Thinking of contributing?
2. Run the tests and make sure that they pass with your setup: `phpunit`.
3. Create your bugfix/feature branch and code away your changes. Add tests for your changes.
4. Make sure all the tests still pass: `phpunit`.
5. Push to your fork and submit new a pull request.
5. Push to your fork and submit new a pull request.

0 comments on commit 8268244

Please sign in to comment.