From 623ad063305ce5240e47ebfdaad2bc17419fe75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 2 Jun 2013 22:33:35 +0200 Subject: [PATCH] fix tiny typo --- Decorator/Decorator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Decorator/Decorator.php b/Decorator/Decorator.php index 856b181..078c59d 100644 --- a/Decorator/Decorator.php +++ b/Decorator/Decorator.php @@ -59,7 +59,7 @@ class RenderInXml extends Decorator implements Renderer public function renderData() { $output = $this->_wrapped->renderData(); - // do some fany conversion to xml from array ... + // do some fancy conversion to xml from array ... return simplexml_load_string($output); } }