fix a typo

This commit is contained in:
Kunio Murasawa
2014-07-15 00:14:45 +09:00
parent ab78310702
commit 86f94fbfc2

View File

@@ -26,7 +26,7 @@ Consider the most basic step:
{% highlight php %}
<?php
functon getAllSomethings($db) {
function getAllSomethings($db) {
return $db->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');
}
}