Skip to content

Commit fdfbc53

Browse files
author
elgris
committed
typo fix
1 parent ecac329 commit fdfbc53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

select.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func (b *SelectBuilder) Columns(columns ...string) *SelectBuilder {
190190
// Column adds a result column to the query.
191191
// Unlike Columns, Column accepts args which will be bound to placeholders in
192192
// the columns string, for example:
193-
// Column("IF(col IN ("+squirrel.Placeholders(3)+"), 1, 0) as col", 1, 2, 3)
193+
// Column("IF(col IN ("+Placeholders(3)+"), 1, 0) as col", 1, 2, 3)
194194
func (b *SelectBuilder) Column(column interface{}, args ...interface{}) *SelectBuilder {
195195
b.columns = append(b.columns, newPart(column, args...))
196196

sqrl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// package sqrl provides a fluent SQL generator.
22
//
3-
// See https://github.com/elgris/squirrel for examples.
3+
// See https://github.com/elgris/sqrl for examples.
44
package sqrl
55

66
import (

0 commit comments

Comments
 (0)