From 695dd29ab4bd69b331f3d576cea30ffaa0f1eecf Mon Sep 17 00:00:00 2001 From: qiuyesuifeng Date: Wed, 4 Nov 2015 10:33:49 +0800 Subject: [PATCH] table: address comment. --- table/table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table/table.go b/table/table.go index bb64a36ae4..79e8e6a5ad 100644 --- a/table/table.go +++ b/table/table.go @@ -110,7 +110,7 @@ type Table interface { LockRow(ctx context.Context, h int64, update bool) error // SetColValue sets the column value. - // If the column untouched, we don't need to do this. + // If the column is untouched, we don't need to do this. SetColValue(txn kv.Transaction, key []byte, data interface{}) error }