Skip to content

Commit

Permalink
fix error in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
apemsel committed Feb 22, 2016
1 parent b17f65b commit 104b243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ A class to work with attributed strings in PHP. Attributed strings are strings t
$mas = new MutableAttributedString("The brown fox");
$mas->setLength(0, 13, "bold");
$mas->insert(4, "quick "); // "The quick brown fox";
$mas->is("underlined", 6) // true, "quick" is now also bold since the inserted text was inside the "bold" attribute
$mas->is("bold", 6) // true, "quick" is now also bold since the inserted text was inside the "bold" attribute
$mas->delete(10, 6) // "The quick fox"
```

0 comments on commit 104b243

Please sign in to comment.