From bfc87ac1ca916aa8ebc472a279a28a080e721ad5 Mon Sep 17 00:00:00 2001
From: Patrick O'brien <nullbio@users.noreply.github.com>
Date: Mon, 5 Sep 2016 21:05:42 +1000
Subject: [PATCH] Fix typo in comment

---
 boil/qm/query_mods.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/boil/qm/query_mods.go b/boil/qm/query_mods.go
index 3a06cd7..5cbf3c6 100644
--- a/boil/qm/query_mods.go
+++ b/boil/qm/query_mods.go
@@ -51,7 +51,7 @@ func Where(clause string, args ...interface{}) QueryMod {
 	}
 }
 
-// And allows you to specify a where clause seperated by an AND for your statement
+// And allows you to specify a where clause separated by an AND for your statement
 // And is a duplicate of the Where function, but allows for more natural looking
 // query mod chains, for example: (Where("a=?"), And("b=?"), Or("c=?")))
 func And(clause string, args ...interface{}) QueryMod {
@@ -60,7 +60,7 @@ func And(clause string, args ...interface{}) QueryMod {
 	}
 }
 
-// Or allows you to specify a where clause seperated by an OR for your statement
+// Or allows you to specify a where clause separated by an OR for your statement
 func Or(clause string, args ...interface{}) QueryMod {
 	return func(q *boil.Query) {
 		boil.AppendWhere(q, clause, args...)