From 833fd04c6b5023df64d5debf8a16ee99738a7571 Mon Sep 17 00:00:00 2001 From: Aaron L Date: Sun, 4 Jun 2017 11:19:03 -0700 Subject: [PATCH] Fix random typo --- strmangle/strmangle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strmangle/strmangle.go b/strmangle/strmangle.go index b330ac0..b3c16bc 100644 --- a/strmangle/strmangle.go +++ b/strmangle/strmangle.go @@ -93,7 +93,7 @@ func SchemaTable(lq, rq string, driver string, schema string, table string) stri return fmt.Sprintf(`%s%s%s`, lq, table, rq) } -// IdentQuote attempts to quote simple identifiers in SQL tatements +// IdentQuote attempts to quote simple identifiers in SQL statements func IdentQuote(lq byte, rq byte, s string) string { if strings.ToLower(s) == "null" || s == "?" { return s