Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce830c4

Browse files
committed
Fix typo: implemenation > implementation
1 parent 9d8175b commit ce830c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Structural/Bridge/Tests/BridgeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function testCanPrintUsingThePlainTextPrinter()
1414
$service = new HelloWorldService(new PlainTextFormatter());
1515
$this->assertEquals('Hello World', $service->get());
1616

17-
// now change the implemenation and use the HtmlFormatter instead
17+
// now change the implementation and use the HtmlFormatter instead
1818
$service->setImplementation(new HtmlFormatter());
1919
$this->assertEquals('<p>Hello World</p>', $service->get());
2020
}

0 commit comments

Comments
 (0)