Skip to content

Commit

Permalink
fixes Text::insert function example
Browse files Browse the repository at this point in the history
  • Loading branch information
Sethathi committed Mar 14, 2016
1 parent d6aa467 commit c8c2080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utility/Text.php
Expand Up @@ -138,7 +138,7 @@ public static function tokenize($data, $separator = ',', $leftBound = '(', $righ
* corresponds to a variable placeholder name in $str.
* Example:
* ```
* Text::insert(':name is :age years old.', ['name' => 'Bob', '65']);
* Text::insert(':name is :age years old.', ['name' => 'Bob', 'age' => '65']);
* ```
* Returns: Bob is 65 years old.
*
Expand Down

0 comments on commit c8c2080

Please sign in to comment.