Skip to content

Commit

Permalink
Fix typos in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsknn authored May 6, 2020
1 parent 362215d commit e2cde12
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 e2cde12

Please sign in to comment.