Update with minor grammar fixes

This commit is contained in:
Myo T Kyaw
2016-09-16 18:40:43 -07:00
parent 5118537e23
commit 14e80864d5
14 changed files with 19 additions and 19 deletions

View File

@@ -19,7 +19,7 @@ foreach ($db->query('SELECT * FROM table') as $row) {
</ul>
{% endhighlight %}
This is bad practice for all sorts of reasons, mainly that its hard to debug, hard to test, hard to read and it is
This is bad practice for all sorts of reasons, mainly that it's hard to debug, hard to test, hard to read and it is
going to output a lot of fields if you don't put a limit on there.
While there are many other solutions to doing this - depending on if you prefer [OOP](/#object-oriented-programming) or