Skip to content

Commit

Permalink
State - class names fix (kamranahmedse#70)
Browse files Browse the repository at this point in the history
* State - class names fix

* State - class names fix
  • Loading branch information
bhoodream authored and kamranahmedse committed Feb 28, 2017
1 parent b9a53a8 commit 5cf37f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1902,12 +1902,12 @@ $editor = new TextEditor(new Default());

$editor->type('First line');

$editor->setState(new UpperCaseState());
$editor->setState(new UpperCase());

$editor->type('Second line');
$editor->type('Third line');

$editor->setState(new LowerCaseState());
$editor->setState(new LowerCase());

$editor->type('Fourth line');
$editor->type('Fifth line');
Expand Down

0 comments on commit 5cf37f7

Please sign in to comment.