From 17bb7b76d4f898cd88efe0c537f9facd461f473b Mon Sep 17 00:00:00 2001 From: AS Date: Sat, 10 May 2014 15:39:28 +0800 Subject: [PATCH] Fix typo --- AbstractFactory/Html/Picture.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AbstractFactory/Html/Picture.php b/AbstractFactory/Html/Picture.php index 2e648b0..843f216 100644 --- a/AbstractFactory/Html/Picture.php +++ b/AbstractFactory/Html/Picture.php @@ -18,6 +18,6 @@ class Picture extends BasePicture */ public function render() { - return sprintf('', $this->path, $this->name); + return sprintf('', $this->path, $this->name); } }