Fix typo: implemenation > implementation

This commit is contained in:
Sara Bine
2017-04-03 19:13:41 -06:00
parent 9d8175b135
commit ce830c499d

View File

@ -14,7 +14,7 @@ class BridgeTest extends TestCase
$service = new HelloWorldService(new PlainTextFormatter());
$this->assertEquals('Hello World', $service->get());
// now change the implemenation and use the HtmlFormatter instead
// now change the implementation and use the HtmlFormatter instead
$service->setImplementation(new HtmlFormatter());
$this->assertEquals('<p>Hello World</p>', $service->get());
}