From fc1544707c574a8da809f3fe8c957331b406efc0 Mon Sep 17 00:00:00 2001
From: Jon Gotlin <jon@jon.se>
Date: Tue, 3 Nov 2015 07:28:45 +0100
Subject: [PATCH] Corrected copy-and-pasted comment

---
 Structural/Decorator/Tests/DecoratorTest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Structural/Decorator/Tests/DecoratorTest.php b/Structural/Decorator/Tests/DecoratorTest.php
index 437f068..c50181f 100644
--- a/Structural/Decorator/Tests/DecoratorTest.php
+++ b/Structural/Decorator/Tests/DecoratorTest.php
@@ -27,7 +27,7 @@ class DecoratorTest extends \PHPUnit_Framework_TestCase
 
     public function testXmlDecorator()
     {
-        // Wrap service with a JSON decorator for renderers
+        // Wrap service with a XML decorator for renderers
         $service = new Decorator\RenderInXml($this->service);
         // Our Renderer will now output XML instead of an array
         $xml = '<?xml version="1.0"?><foo>bar</foo>';