grammer / typo fixes in developer file
authorRobert Treat <rob@xzilla.net>
Mon, 30 Oct 2017 22:41:04 +0000 (18:41 -0400)
committerRobert Treat <rob@xzilla.net>
Tue, 31 Oct 2017 04:21:02 +0000 (00:21 -0400)
DEVELOPERS

index 70c7300db3bf4f1259a76906c01122fb24fa098a..b88c170f2ff9e2481a1140b38241c22a5003f6df 100644 (file)
@@ -69,16 +69,16 @@ attributes in HTML form elements use action="thisformname.php".  This
 ensures that browsers remove query strings when expanding the given
 relative URL into a full URL.
 
-When working on database classes, always schema qualifing your SQL where it is
+When working on database classes, always schema qualify your SQL where it is
 possible with the current schema ($data->_schema) for pg73+ classes. Then don't
-forget to write your method for older classes which doesn't suppport schemas.
+forget to write your method for older classes which don't support schemas.
 
 When working with git, always make sure to do a 'git pull' both before you 
 start; so you have the latest code to work with; and also again before you 
 create your patch; to minimize the chance of having conflicts. If you plan to 
 submit your code via github pull requests, we strongly recommend doing your 
 work in a feature specific branch. If you want to submit multiple patches, 
-they should all live in thier own branch. Remeber, smaller changes are easier
+they should all live in their own branch. Remember, smaller changes are easier 
 to review, approve, and merge.