Merge pull request #409 from m92o/patch-7

fix a typo
This commit is contained in:
Phil Sturgeon
2014-07-15 16:35:53 +01:00

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');
}
}