From 86f94fbfc2c7e4507c53d1be703127163f94a4aa Mon Sep 17 00:00:00 2001 From: Kunio Murasawa Date: Tue, 15 Jul 2014 00:14:45 +0900 Subject: [PATCH] fix a typo --- _posts/07-01-02-Interacting-via-Code.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/07-01-02-Interacting-via-Code.md b/_posts/07-01-02-Interacting-via-Code.md index 8b28079..9414247 100644 --- a/_posts/07-01-02-Interacting-via-Code.md +++ b/_posts/07-01-02-Interacting-via-Code.md @@ -26,7 +26,7 @@ Consider the most basic step: {% highlight php %} query('SELECT * FROM table'); } @@ -70,7 +70,7 @@ class Foo() $this->db = $db; } - public functon getAllFoos() { + public function getAllFoos() { return $this->db->query('SELECT * FROM table'); } }