ソースを参照

review feedback

John Weldon 10 年 前
コミット
91e1d9d996
1 ファイル変更1 行追加1 行削除
  1. 1 1
      session.go

+ 1 - 1
session.go

@@ -435,7 +435,7 @@ type Query struct {
 }
 
 // String implements the stringer interface.
-func (q *Query) String() string {
+func (q Query) String() string {
 	return fmt.Sprintf("[query statement=%q values=%+v consistency=%s]", q.stmt, q.values, q.cons)
 }