浏览代码

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)
 }