Skip to content

Commit

Permalink
Merge pull request #39 from mtsknn/patch-1
Browse files Browse the repository at this point in the history
Fix typos in readme
  • Loading branch information
PHLAK authored May 6, 2020
2 parents 362215d + e2cde12 commit 11e9c09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $string = str('john pinkerton');
```

Once you have a concrete `Twine\Str` instance you may treat it like any other
string. This includes echoing it or using any of PHP's built in string functions
string. This includes echoing it or using any of PHP's built-in string functions
against it.

```php
Expand All @@ -79,7 +79,7 @@ str_shuffle($string) // Returns something like 'enoipo ktnjhnr'
strlen($string); // Returns 14
```

The strength of Twine, however comes from it's built-in methods.
The strength of Twine, however comes from its built-in methods.

```php
$string->echo(); // Echos 'john pinkerton'
Expand All @@ -95,7 +95,7 @@ $string->snakeCase(); // Returns 'john_pinkerton'
```

At this point you're ready to start using Twine by calling any of its many
built in methods.
built-in methods.

Available Methods
-----------------
Expand Down

0 comments on commit 11e9c09

Please sign in to comment.